├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── .gitignore └── demonstration.gif ├── index.js ├── package.json ├── tsconfig.json └── types.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/README.md -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /demo/demonstration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/demo/demonstration.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kdastan/react-native-modal-loader/HEAD/types.d.ts --------------------------------------------------------------------------------