├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── shadmantaskmanagement │ │ │ ├── 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 ├── app ├── AppHeader │ ├── index.js │ └── style.js ├── Components │ ├── CameraGallery │ │ └── CameraGallery.js │ └── ModalComponent │ │ └── Modal.js ├── navigation │ ├── AuthNavigation.js │ ├── DrawerNavigation.js │ └── Navigation.js └── src │ ├── assets │ ├── 1.jpg │ ├── gtfft.jfif │ └── task.jfif │ └── screens │ ├── Loader │ ├── LoaderStyle.js │ └── LoaderView.js │ ├── Login │ ├── LoginContainer.js │ ├── LoginView.js │ └── Loginstyles.js │ ├── Main │ ├── MainContainer.js │ ├── MainStyles.js │ └── MainView.js │ └── SideBar │ └── SideBar.js ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── shadmantaskmanagement-tvOS │ └── Info.plist ├── shadmantaskmanagement-tvOSTests │ └── Info.plist ├── shadmantaskmanagement.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── shadmantaskmanagement-tvOS.xcscheme │ │ └── shadmantaskmanagement.xcscheme ├── shadmantaskmanagement │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── shadmantaskmanagementTests │ ├── Info.plist │ └── shadmantaskmanagementTests.m ├── metro.config.js ├── package.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/shadmantaskmanagement/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/java/com/shadmantaskmanagement/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/shadmantaskmanagement/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/java/com/shadmantaskmanagement/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/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/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app.json -------------------------------------------------------------------------------- /app/AppHeader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/AppHeader/index.js -------------------------------------------------------------------------------- /app/AppHeader/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/AppHeader/style.js -------------------------------------------------------------------------------- /app/Components/CameraGallery/CameraGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/Components/CameraGallery/CameraGallery.js -------------------------------------------------------------------------------- /app/Components/ModalComponent/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/Components/ModalComponent/Modal.js -------------------------------------------------------------------------------- /app/navigation/AuthNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/navigation/AuthNavigation.js -------------------------------------------------------------------------------- /app/navigation/DrawerNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/navigation/DrawerNavigation.js -------------------------------------------------------------------------------- /app/navigation/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/navigation/Navigation.js -------------------------------------------------------------------------------- /app/src/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/assets/1.jpg -------------------------------------------------------------------------------- /app/src/assets/gtfft.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/assets/gtfft.jfif -------------------------------------------------------------------------------- /app/src/assets/task.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/assets/task.jfif -------------------------------------------------------------------------------- /app/src/screens/Loader/LoaderStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Loader/LoaderStyle.js -------------------------------------------------------------------------------- /app/src/screens/Loader/LoaderView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Loader/LoaderView.js -------------------------------------------------------------------------------- /app/src/screens/Login/LoginContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Login/LoginContainer.js -------------------------------------------------------------------------------- /app/src/screens/Login/LoginView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Login/LoginView.js -------------------------------------------------------------------------------- /app/src/screens/Login/Loginstyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Login/Loginstyles.js -------------------------------------------------------------------------------- /app/src/screens/Main/MainContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Main/MainContainer.js -------------------------------------------------------------------------------- /app/src/screens/Main/MainStyles.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/src/screens/Main/MainView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/Main/MainView.js -------------------------------------------------------------------------------- /app/src/screens/SideBar/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/app/src/screens/SideBar/SideBar.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/shadmantaskmanagement-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/shadmantaskmanagement-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/shadmantaskmanagement.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/shadmantaskmanagement.xcodeproj/xcshareddata/xcschemes/shadmantaskmanagement-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement.xcodeproj/xcshareddata/xcschemes/shadmantaskmanagement-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/shadmantaskmanagement.xcodeproj/xcshareddata/xcschemes/shadmantaskmanagement.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement.xcodeproj/xcshareddata/xcschemes/shadmantaskmanagement.xcscheme -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/AppDelegate.h -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/AppDelegate.m -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/Info.plist -------------------------------------------------------------------------------- /ios/shadmantaskmanagement/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagement/main.m -------------------------------------------------------------------------------- /ios/shadmantaskmanagementTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagementTests/Info.plist -------------------------------------------------------------------------------- /ios/shadmantaskmanagementTests/shadmantaskmanagementTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/ios/shadmantaskmanagementTests/shadmantaskmanagementTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdshadman/react-native-firebase-phone-auth-CRUD/HEAD/yarn.lock --------------------------------------------------------------------------------