Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Universal media queries for React Native and web

License

NotificationsYou must be signed in to change notification settings

kiurchv/react-native-web-responsive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Universal media queries for React Native and web.

Installation

Using npm:

npm install --save react-native-web-responsive

or yarn:

yarn add react-native-web-responsive

Usage

Since MediaQuery component built on components fromreact-responsive andreact-native-responsive it can utilize any props supported by them with next limitations:

  1. There is no difference between viewport- and device-based measurements on native.
  2. The only supported unit for the resolution property is dppx.
  3. Child function, propertiesaspectRatio,component,color,colorIndex,monochrome,scan andtype are unsupported on native.

Example

importReactfrom"react";import{View,Text}from"react-primitives";importMediaQueryfrom"react-native-web-responsive";functionResponsiveExample(){return(<View><Text>Device Test!</Text><MediaQueryminWidth={1224}><Text>You are a desktop or laptop</Text><MediaQueryminWidth={1824}><Text>You also have a huge screen</Text></MediaQuery></MediaQuery><MediaQuerymaxWidth={1224}><Text>You are a tablet or mobile phone</Text></MediaQuery><MediaQueryorientation="portrait"><Text>You are portrait</Text></MediaQuery><MediaQueryorientation="landscape"><Text>You are landscape</Text></MediaQuery><MediaQueryminPixelRatio={2}><Text>You are retina</Text></MediaQuery></View>);}

License

MIT

About

Universal media queries for React Native and web

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp