├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── __tests__ └── App-test.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── tekram │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── tekram │ │ │ ├── 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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets ├── driver.jpg ├── fonts │ ├── INSEYAB_DEMO-REGULAR.OTF │ ├── SOURCESANSPRO-REGULAR.OTF │ └── SOURCESANSPRO-SEMIBOLD.OTF ├── icon.png ├── loris-demaria-13qSX4tZQAc-unsplash.jpg ├── moto.jpg ├── soufi.png ├── sounds │ ├── calling.mp3 │ ├── dialing.mp3 │ └── end_call.mp3 ├── splash.png ├── tekram.png ├── tekramSplash.png ├── tekramicon.png └── user.jpg ├── babel.config.js ├── config.json ├── index.js ├── ios ├── Podfile ├── tekram-tvOS │ └── Info.plist ├── tekram-tvOSTests │ └── Info.plist ├── tekram.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── tekram-tvOS.xcscheme │ │ └── tekram.xcscheme ├── tekram │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── tekramTests │ ├── Info.plist │ └── tekramTests.m ├── metro.config.js ├── package.json ├── src ├── actions │ ├── connection.js │ ├── currentUser.js │ ├── dialogs.js │ ├── index.js │ ├── messages.js │ ├── selectedDialog.js │ ├── types.js │ └── users.js ├── api │ ├── AuthApi.js │ ├── DetailsApi.js │ ├── DriverApi.js │ └── index.js ├── components │ ├── AuthInputField.js │ ├── CButton.js │ ├── CView.js │ ├── CarouselSlider.js │ ├── Driver.js │ ├── DriverInfo.js │ ├── FavoriteDriver.js │ ├── Header.js │ ├── ListDrivers.js │ ├── MotorcycleInfo.js │ ├── MyDrawer.js │ ├── PriceListElem.js │ ├── Slideshow.js │ ├── Switch.js │ ├── avatar.js │ ├── chatImage.js │ ├── createBtn.js │ ├── imgPicker.js │ ├── indicator.js │ └── messageSendState.js ├── config │ └── i18n │ │ ├── i18n.js │ │ └── locales │ │ ├── ar.js │ │ └── en.js ├── constants │ ├── AppConfig.json │ ├── Colors.js │ └── Images.js ├── helpers │ ├── alert.js │ ├── constants.js │ ├── file.js │ └── getTime.js ├── models │ ├── dialogs.js │ ├── message.js │ └── user.js ├── navigation │ ├── DrawerNavigator.js │ ├── Initializer.js │ ├── Root.js │ └── routes │ │ └── NavigationService.js ├── reducers │ ├── connection.js │ ├── currentUser.js │ ├── dialogs.js │ ├── index.js │ ├── messages.js │ ├── reducer-function.js │ ├── selectedDialog.js │ ├── userReducer.js │ └── users.js ├── screens │ ├── AboutUs.js │ ├── ContactUsScreen.js │ ├── DashboardRouter.js │ ├── DriverScreen.js │ ├── FavorisScreen.js │ ├── HomeScreen.js │ ├── OurPartnersScreen.js │ ├── PartnersScreen.js │ ├── PriceList.js │ ├── SearchDriverScreen.js │ ├── SignInScreen.js │ ├── SignUpScreen.js │ ├── VerifCodeScreen.js │ ├── VideoScreen │ │ ├── CallingLoader.js │ │ ├── RTCViewGrid.js │ │ ├── ToolBar.js │ │ ├── UsersSelect.js │ │ └── index.js │ ├── chat │ │ ├── contactDetails.js │ │ ├── groupDetails.js │ │ ├── index.js │ │ └── message.js │ ├── dashBoard │ │ ├── DashboardScrean.js │ │ ├── ItemName.js │ │ ├── ModalDashboard.js │ │ └── accountStatment │ │ │ ├── AccountStatememnt.js │ │ │ └── component │ │ │ └── AccountItem.js │ └── index.js ├── services │ ├── AuthChat-service.js │ ├── call-service.js │ ├── chat-service.js │ ├── push-notification.js │ └── users-service.js └── store.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/.flowconfig -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/App.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/tekram/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/debug/java/com/tekram/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/tekram/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/java/com/tekram/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/tekram/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/java/com/tekram/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/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/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/app.json -------------------------------------------------------------------------------- /assets/driver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/driver.jpg -------------------------------------------------------------------------------- /assets/fonts/INSEYAB_DEMO-REGULAR.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/fonts/INSEYAB_DEMO-REGULAR.OTF -------------------------------------------------------------------------------- /assets/fonts/SOURCESANSPRO-REGULAR.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/fonts/SOURCESANSPRO-REGULAR.OTF -------------------------------------------------------------------------------- /assets/fonts/SOURCESANSPRO-SEMIBOLD.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/fonts/SOURCESANSPRO-SEMIBOLD.OTF -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/loris-demaria-13qSX4tZQAc-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/loris-demaria-13qSX4tZQAc-unsplash.jpg -------------------------------------------------------------------------------- /assets/moto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/moto.jpg -------------------------------------------------------------------------------- /assets/soufi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/soufi.png -------------------------------------------------------------------------------- /assets/sounds/calling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/sounds/calling.mp3 -------------------------------------------------------------------------------- /assets/sounds/dialing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/sounds/dialing.mp3 -------------------------------------------------------------------------------- /assets/sounds/end_call.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/sounds/end_call.mp3 -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/tekram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/tekram.png -------------------------------------------------------------------------------- /assets/tekramSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/tekramSplash.png -------------------------------------------------------------------------------- /assets/tekramicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/tekramicon.png -------------------------------------------------------------------------------- /assets/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/assets/user.jpg -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/babel.config.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/tekram-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/tekram-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/tekram.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/tekram.xcodeproj/xcshareddata/xcschemes/tekram-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram.xcodeproj/xcshareddata/xcschemes/tekram-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/tekram.xcodeproj/xcshareddata/xcschemes/tekram.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram.xcodeproj/xcshareddata/xcschemes/tekram.xcscheme -------------------------------------------------------------------------------- /ios/tekram/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/AppDelegate.h -------------------------------------------------------------------------------- /ios/tekram/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/AppDelegate.m -------------------------------------------------------------------------------- /ios/tekram/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/tekram/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/tekram/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/tekram/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/Info.plist -------------------------------------------------------------------------------- /ios/tekram/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekram/main.m -------------------------------------------------------------------------------- /ios/tekramTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekramTests/Info.plist -------------------------------------------------------------------------------- /ios/tekramTests/tekramTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/ios/tekramTests/tekramTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/connection.js -------------------------------------------------------------------------------- /src/actions/currentUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/currentUser.js -------------------------------------------------------------------------------- /src/actions/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/dialogs.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/actions/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/messages.js -------------------------------------------------------------------------------- /src/actions/selectedDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/selectedDialog.js -------------------------------------------------------------------------------- /src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/types.js -------------------------------------------------------------------------------- /src/actions/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/actions/users.js -------------------------------------------------------------------------------- /src/api/AuthApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/api/AuthApi.js -------------------------------------------------------------------------------- /src/api/DetailsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/api/DetailsApi.js -------------------------------------------------------------------------------- /src/api/DriverApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/api/DriverApi.js -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/components/AuthInputField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/AuthInputField.js -------------------------------------------------------------------------------- /src/components/CButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/CButton.js -------------------------------------------------------------------------------- /src/components/CView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/CView.js -------------------------------------------------------------------------------- /src/components/CarouselSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/CarouselSlider.js -------------------------------------------------------------------------------- /src/components/Driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/Driver.js -------------------------------------------------------------------------------- /src/components/DriverInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/DriverInfo.js -------------------------------------------------------------------------------- /src/components/FavoriteDriver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/FavoriteDriver.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/ListDrivers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/ListDrivers.js -------------------------------------------------------------------------------- /src/components/MotorcycleInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/MotorcycleInfo.js -------------------------------------------------------------------------------- /src/components/MyDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/MyDrawer.js -------------------------------------------------------------------------------- /src/components/PriceListElem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/PriceListElem.js -------------------------------------------------------------------------------- /src/components/Slideshow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/Slideshow.js -------------------------------------------------------------------------------- /src/components/Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/Switch.js -------------------------------------------------------------------------------- /src/components/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/avatar.js -------------------------------------------------------------------------------- /src/components/chatImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/chatImage.js -------------------------------------------------------------------------------- /src/components/createBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/createBtn.js -------------------------------------------------------------------------------- /src/components/imgPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/imgPicker.js -------------------------------------------------------------------------------- /src/components/indicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/indicator.js -------------------------------------------------------------------------------- /src/components/messageSendState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/components/messageSendState.js -------------------------------------------------------------------------------- /src/config/i18n/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/config/i18n/i18n.js -------------------------------------------------------------------------------- /src/config/i18n/locales/ar.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/i18n/locales/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/config/i18n/locales/en.js -------------------------------------------------------------------------------- /src/constants/AppConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/constants/AppConfig.json -------------------------------------------------------------------------------- /src/constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/constants/Colors.js -------------------------------------------------------------------------------- /src/constants/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/constants/Images.js -------------------------------------------------------------------------------- /src/helpers/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/helpers/alert.js -------------------------------------------------------------------------------- /src/helpers/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/helpers/constants.js -------------------------------------------------------------------------------- /src/helpers/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/helpers/file.js -------------------------------------------------------------------------------- /src/helpers/getTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/helpers/getTime.js -------------------------------------------------------------------------------- /src/models/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/models/dialogs.js -------------------------------------------------------------------------------- /src/models/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/models/message.js -------------------------------------------------------------------------------- /src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/models/user.js -------------------------------------------------------------------------------- /src/navigation/DrawerNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/navigation/DrawerNavigator.js -------------------------------------------------------------------------------- /src/navigation/Initializer.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/navigation/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/navigation/Root.js -------------------------------------------------------------------------------- /src/navigation/routes/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/navigation/routes/NavigationService.js -------------------------------------------------------------------------------- /src/reducers/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/connection.js -------------------------------------------------------------------------------- /src/reducers/currentUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/currentUser.js -------------------------------------------------------------------------------- /src/reducers/dialogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/dialogs.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/messages.js -------------------------------------------------------------------------------- /src/reducers/reducer-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/reducer-function.js -------------------------------------------------------------------------------- /src/reducers/selectedDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/selectedDialog.js -------------------------------------------------------------------------------- /src/reducers/userReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/userReducer.js -------------------------------------------------------------------------------- /src/reducers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/reducers/users.js -------------------------------------------------------------------------------- /src/screens/AboutUs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/AboutUs.js -------------------------------------------------------------------------------- /src/screens/ContactUsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/ContactUsScreen.js -------------------------------------------------------------------------------- /src/screens/DashboardRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/DashboardRouter.js -------------------------------------------------------------------------------- /src/screens/DriverScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/DriverScreen.js -------------------------------------------------------------------------------- /src/screens/FavorisScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/FavorisScreen.js -------------------------------------------------------------------------------- /src/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/HomeScreen.js -------------------------------------------------------------------------------- /src/screens/OurPartnersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/OurPartnersScreen.js -------------------------------------------------------------------------------- /src/screens/PartnersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/PartnersScreen.js -------------------------------------------------------------------------------- /src/screens/PriceList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/PriceList.js -------------------------------------------------------------------------------- /src/screens/SearchDriverScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/SearchDriverScreen.js -------------------------------------------------------------------------------- /src/screens/SignInScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/SignInScreen.js -------------------------------------------------------------------------------- /src/screens/SignUpScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/SignUpScreen.js -------------------------------------------------------------------------------- /src/screens/VerifCodeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/VerifCodeScreen.js -------------------------------------------------------------------------------- /src/screens/VideoScreen/CallingLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/VideoScreen/CallingLoader.js -------------------------------------------------------------------------------- /src/screens/VideoScreen/RTCViewGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/VideoScreen/RTCViewGrid.js -------------------------------------------------------------------------------- /src/screens/VideoScreen/ToolBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/VideoScreen/ToolBar.js -------------------------------------------------------------------------------- /src/screens/VideoScreen/UsersSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/VideoScreen/UsersSelect.js -------------------------------------------------------------------------------- /src/screens/VideoScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/VideoScreen/index.js -------------------------------------------------------------------------------- /src/screens/chat/contactDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/chat/contactDetails.js -------------------------------------------------------------------------------- /src/screens/chat/groupDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/chat/groupDetails.js -------------------------------------------------------------------------------- /src/screens/chat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/chat/index.js -------------------------------------------------------------------------------- /src/screens/chat/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/chat/message.js -------------------------------------------------------------------------------- /src/screens/dashBoard/DashboardScrean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/dashBoard/DashboardScrean.js -------------------------------------------------------------------------------- /src/screens/dashBoard/ItemName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/dashBoard/ItemName.js -------------------------------------------------------------------------------- /src/screens/dashBoard/ModalDashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/dashBoard/ModalDashboard.js -------------------------------------------------------------------------------- /src/screens/dashBoard/accountStatment/AccountStatememnt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/dashBoard/accountStatment/AccountStatememnt.js -------------------------------------------------------------------------------- /src/screens/dashBoard/accountStatment/component/AccountItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/dashBoard/accountStatment/component/AccountItem.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/services/AuthChat-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/services/AuthChat-service.js -------------------------------------------------------------------------------- /src/services/call-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/services/call-service.js -------------------------------------------------------------------------------- /src/services/chat-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/services/chat-service.js -------------------------------------------------------------------------------- /src/services/push-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/services/push-notification.js -------------------------------------------------------------------------------- /src/services/users-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/services/users-service.js -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/src/store.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starmastar1126/Tekram_ReactNative/HEAD/yarn.lock --------------------------------------------------------------------------------