├── .gitignore ├── LICENSE ├── MaM.jpg ├── __tests__ └── index.js ├── components ├── index.js └── react-native-cross-platform-responsive-dimensions.d.ts ├── jsconfig.json ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/LICENSE -------------------------------------------------------------------------------- /MaM.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/MaM.jpg -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/components/index.js -------------------------------------------------------------------------------- /components/react-native-cross-platform-responsive-dimensions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/components/react-native-cross-platform-responsive-dimensions.d.ts -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drumnation/react-native-cross-platform-responsive-dimensions/HEAD/readme.md --------------------------------------------------------------------------------