├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── frontend │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── debug.log ├── index.js ├── ios ├── Frontend-tvOS │ └── Info.plist ├── Frontend-tvOSTests │ └── Info.plist ├── Frontend.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Frontend-tvOS.xcscheme │ │ └── Frontend.xcscheme ├── Frontend.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Frontend │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── FrontendTests │ ├── FrontendTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json ├── src ├── Assets │ └── Images │ │ ├── Background.jpeg │ │ └── Logo.png ├── Navigations │ ├── drawer-navigators.js │ ├── index.js │ ├── stack-navigators.js │ └── tab-navigators.js ├── Redux │ ├── Actions │ │ └── auth-actions.js │ ├── Reducers │ │ ├── auth-reducer.js │ │ └── index.js │ ├── action-types.js │ ├── connects.js │ └── store.js └── Screens │ ├── Auth │ ├── Login │ │ ├── index.js │ │ └── styles.js │ ├── Register │ │ ├── index.js │ │ └── styles.js │ └── Welcome │ │ ├── index.js │ │ └── styles.js │ ├── ContactUs │ ├── index.js │ └── styles.js │ ├── Details │ ├── index.js │ └── styles.js │ ├── Directions │ ├── index.js │ └── styles.js │ ├── HouseAccess │ ├── index.js │ └── styles.js │ ├── Loading │ ├── index.js │ └── styles.js │ ├── Profile │ ├── index.js │ └── styles.js │ └── Reservation │ ├── index.js │ └── styles.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/App.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/frontend/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/java/com/frontend/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/frontend/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/java/com/frontend/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/babel.config.js -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/debug.log -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/index.js -------------------------------------------------------------------------------- /ios/Frontend-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/Frontend-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/Frontend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Frontend.xcodeproj/xcshareddata/xcschemes/Frontend-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend.xcodeproj/xcshareddata/xcschemes/Frontend-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/Frontend.xcodeproj/xcshareddata/xcschemes/Frontend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend.xcodeproj/xcshareddata/xcschemes/Frontend.xcscheme -------------------------------------------------------------------------------- /ios/Frontend.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Frontend.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Frontend/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/AppDelegate.h -------------------------------------------------------------------------------- /ios/Frontend/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/AppDelegate.m -------------------------------------------------------------------------------- /ios/Frontend/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/Frontend/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Frontend/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Frontend/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/Info.plist -------------------------------------------------------------------------------- /ios/Frontend/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Frontend/main.m -------------------------------------------------------------------------------- /ios/FrontendTests/FrontendTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/FrontendTests/FrontendTests.m -------------------------------------------------------------------------------- /ios/FrontendTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/FrontendTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/Assets/Images/Background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Assets/Images/Background.jpeg -------------------------------------------------------------------------------- /src/Assets/Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Assets/Images/Logo.png -------------------------------------------------------------------------------- /src/Navigations/drawer-navigators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Navigations/drawer-navigators.js -------------------------------------------------------------------------------- /src/Navigations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Navigations/index.js -------------------------------------------------------------------------------- /src/Navigations/stack-navigators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Navigations/stack-navigators.js -------------------------------------------------------------------------------- /src/Navigations/tab-navigators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Navigations/tab-navigators.js -------------------------------------------------------------------------------- /src/Redux/Actions/auth-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Redux/Actions/auth-actions.js -------------------------------------------------------------------------------- /src/Redux/Reducers/auth-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Redux/Reducers/auth-reducer.js -------------------------------------------------------------------------------- /src/Redux/Reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Redux/Reducers/index.js -------------------------------------------------------------------------------- /src/Redux/action-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Redux/action-types.js -------------------------------------------------------------------------------- /src/Redux/connects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Redux/connects.js -------------------------------------------------------------------------------- /src/Redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Redux/store.js -------------------------------------------------------------------------------- /src/Screens/Auth/Login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Auth/Login/index.js -------------------------------------------------------------------------------- /src/Screens/Auth/Login/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Auth/Login/styles.js -------------------------------------------------------------------------------- /src/Screens/Auth/Register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Auth/Register/index.js -------------------------------------------------------------------------------- /src/Screens/Auth/Register/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Auth/Register/styles.js -------------------------------------------------------------------------------- /src/Screens/Auth/Welcome/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Auth/Welcome/index.js -------------------------------------------------------------------------------- /src/Screens/Auth/Welcome/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Auth/Welcome/styles.js -------------------------------------------------------------------------------- /src/Screens/ContactUs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/ContactUs/index.js -------------------------------------------------------------------------------- /src/Screens/ContactUs/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/ContactUs/styles.js -------------------------------------------------------------------------------- /src/Screens/Details/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Details/index.js -------------------------------------------------------------------------------- /src/Screens/Details/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Details/styles.js -------------------------------------------------------------------------------- /src/Screens/Directions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Directions/index.js -------------------------------------------------------------------------------- /src/Screens/Directions/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Directions/styles.js -------------------------------------------------------------------------------- /src/Screens/HouseAccess/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/HouseAccess/index.js -------------------------------------------------------------------------------- /src/Screens/HouseAccess/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/HouseAccess/styles.js -------------------------------------------------------------------------------- /src/Screens/Loading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Loading/index.js -------------------------------------------------------------------------------- /src/Screens/Loading/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Loading/styles.js -------------------------------------------------------------------------------- /src/Screens/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Profile/index.js -------------------------------------------------------------------------------- /src/Screens/Profile/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Profile/styles.js -------------------------------------------------------------------------------- /src/Screens/Reservation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Reservation/index.js -------------------------------------------------------------------------------- /src/Screens/Reservation/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/src/Screens/Reservation/styles.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Silver-IT/react-native-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------