├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── docs └── ScreenSwitcher.gif ├── index.js ├── package.json ├── src ├── ScreenSwitcher.js └── deviceSizes.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | docs/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/README.md -------------------------------------------------------------------------------- /docs/ScreenSwitcher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/docs/ScreenSwitcher.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/package.json -------------------------------------------------------------------------------- /src/ScreenSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/src/ScreenSwitcher.js -------------------------------------------------------------------------------- /src/deviceSizes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/src/deviceSizes.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/calvium/react-native-device-screen-switcher/HEAD/yarn.lock --------------------------------------------------------------------------------