├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .ncurc.json ├── .prettierrc.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── babel.config.js ├── metro.config.js ├── package.json ├── react-native-scaled-layout.jpg ├── src └── index.tsx └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/.gitignore -------------------------------------------------------------------------------- /.ncurc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/.ncurc.json -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/babel.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/package.json -------------------------------------------------------------------------------- /react-native-scaled-layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/react-native-scaled-layout.jpg -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mj-studio-library/react-native-scaled-layout/HEAD/tsconfig.json --------------------------------------------------------------------------------