├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── README.md ├── __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 │ │ │ └── mobile │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── 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 ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── mobile-tvOS │ └── Info.plist ├── mobile-tvOSTests │ └── Info.plist ├── mobile.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── mobile-tvOS.xcscheme │ │ └── mobile.xcscheme ├── mobile.xcworkspace │ └── contents.xcworkspacedata ├── mobile │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── mobileTests │ ├── Info.plist │ └── mobileTests.m ├── metro.config.js ├── package.json ├── src ├── components │ ├── Toast │ │ └── index.js │ ├── navigation │ │ ├── AppNavigation.js │ │ └── NavigationContainer.js │ └── ui │ │ ├── AppointTile.js │ │ ├── BottomView.js │ │ ├── DefaultButton.js │ │ ├── InputField.js │ │ ├── ItemTile.js │ │ └── TouchableCompt.js ├── constants │ └── color.js ├── screens │ ├── auth │ │ ├── Login.js │ │ └── Register.js │ ├── dashboard │ │ ├── AppointmentList.js │ │ └── index.js │ ├── search │ │ └── index.js │ └── seller │ │ └── index.js ├── store │ ├── actions │ │ ├── appointment.js │ │ ├── auth.js │ │ ├── form.js │ │ ├── index.js │ │ ├── seller.js │ │ ├── toast.js │ │ └── types.js │ ├── index.js │ └── reducers │ │ ├── appointment.js │ │ ├── auth.js │ │ ├── index.js │ │ ├── seller.js │ │ └── toast.js └── utils │ └── axiosConfig.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/mobile/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/main/java/com/mobile/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/mobile/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/main/java/com/mobile/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/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/asad-u14/appointment-react-native/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/mobile-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/mobile-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/mobile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile.xcodeproj/xcshareddata/xcschemes/mobile.xcscheme -------------------------------------------------------------------------------- /ios/mobile.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/mobile/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/AppDelegate.h -------------------------------------------------------------------------------- /ios/mobile/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/AppDelegate.m -------------------------------------------------------------------------------- /ios/mobile/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/mobile/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/mobile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/Info.plist -------------------------------------------------------------------------------- /ios/mobile/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobile/main.m -------------------------------------------------------------------------------- /ios/mobileTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobileTests/Info.plist -------------------------------------------------------------------------------- /ios/mobileTests/mobileTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/ios/mobileTests/mobileTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Toast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/Toast/index.js -------------------------------------------------------------------------------- /src/components/navigation/AppNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/navigation/AppNavigation.js -------------------------------------------------------------------------------- /src/components/navigation/NavigationContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/navigation/NavigationContainer.js -------------------------------------------------------------------------------- /src/components/ui/AppointTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/ui/AppointTile.js -------------------------------------------------------------------------------- /src/components/ui/BottomView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/ui/BottomView.js -------------------------------------------------------------------------------- /src/components/ui/DefaultButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/ui/DefaultButton.js -------------------------------------------------------------------------------- /src/components/ui/InputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/ui/InputField.js -------------------------------------------------------------------------------- /src/components/ui/ItemTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/ui/ItemTile.js -------------------------------------------------------------------------------- /src/components/ui/TouchableCompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/components/ui/TouchableCompt.js -------------------------------------------------------------------------------- /src/constants/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/constants/color.js -------------------------------------------------------------------------------- /src/screens/auth/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/screens/auth/Login.js -------------------------------------------------------------------------------- /src/screens/auth/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/screens/auth/Register.js -------------------------------------------------------------------------------- /src/screens/dashboard/AppointmentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/screens/dashboard/AppointmentList.js -------------------------------------------------------------------------------- /src/screens/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/screens/dashboard/index.js -------------------------------------------------------------------------------- /src/screens/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/screens/search/index.js -------------------------------------------------------------------------------- /src/screens/seller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/screens/seller/index.js -------------------------------------------------------------------------------- /src/store/actions/appointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/appointment.js -------------------------------------------------------------------------------- /src/store/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/auth.js -------------------------------------------------------------------------------- /src/store/actions/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/form.js -------------------------------------------------------------------------------- /src/store/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/index.js -------------------------------------------------------------------------------- /src/store/actions/seller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/seller.js -------------------------------------------------------------------------------- /src/store/actions/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/toast.js -------------------------------------------------------------------------------- /src/store/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/actions/types.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/reducers/appointment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/reducers/appointment.js -------------------------------------------------------------------------------- /src/store/reducers/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/reducers/auth.js -------------------------------------------------------------------------------- /src/store/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/reducers/index.js -------------------------------------------------------------------------------- /src/store/reducers/seller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/reducers/seller.js -------------------------------------------------------------------------------- /src/store/reducers/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/store/reducers/toast.js -------------------------------------------------------------------------------- /src/utils/axiosConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/src/utils/axiosConfig.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asad-u14/appointment-react-native/HEAD/yarn.lock --------------------------------------------------------------------------------