├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── LICENSE ├── README.md ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── package.json └── src ├── firebase └── config.js ├── screens ├── HomeScreen │ ├── HomeScreen.js │ └── styles.js ├── LoadScreen │ ├── LoadScreen.js │ └── styles.js ├── LoginScreen │ ├── LoginScreen.js │ └── styles.js ├── RegistrationScreen │ ├── RegistrationScreen.js │ └── styles.js └── index.js └── utils └── LoadingModal.js /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/package.json -------------------------------------------------------------------------------- /src/firebase/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/firebase/config.js -------------------------------------------------------------------------------- /src/screens/HomeScreen/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/HomeScreen/HomeScreen.js -------------------------------------------------------------------------------- /src/screens/HomeScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/HomeScreen/styles.js -------------------------------------------------------------------------------- /src/screens/LoadScreen/LoadScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/LoadScreen/LoadScreen.js -------------------------------------------------------------------------------- /src/screens/LoadScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/LoadScreen/styles.js -------------------------------------------------------------------------------- /src/screens/LoginScreen/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/LoginScreen/LoginScreen.js -------------------------------------------------------------------------------- /src/screens/LoginScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/LoginScreen/styles.js -------------------------------------------------------------------------------- /src/screens/RegistrationScreen/RegistrationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/RegistrationScreen/RegistrationScreen.js -------------------------------------------------------------------------------- /src/screens/RegistrationScreen/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/RegistrationScreen/styles.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/utils/LoadingModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instamobile/react-native-firebase/HEAD/src/utils/LoadingModal.js --------------------------------------------------------------------------------