├── .expo └── settings.json ├── .gitignore ├── .vscode └── settings.json ├── App.js ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── foodnet │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── index.android.bundle │ │ ├── java │ │ └── com │ │ │ └── foodnet │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── foodnet-tvOS │ └── Info.plist ├── foodnet-tvOSTests │ └── Info.plist ├── foodnet.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── foodnet-tvOS.xcscheme │ │ └── foodnet.xcscheme ├── foodnet.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── foodnet │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── hu.lproj │ │ ├── LaunchScreen.storyboard │ │ └── LaunchScreen.strings │ ├── main.m │ └── ro.lproj │ │ ├── LaunchScreen.storyboard │ │ └── LaunchScreen.strings └── foodnetTests │ ├── Info.plist │ └── foodnetTests.m ├── metro.config.js ├── package.json ├── src ├── assets │ ├── icons │ │ ├── Left Accessory.svg │ │ ├── Vector.svg │ │ ├── alert-circle.svg │ │ ├── alert-circle1.svg │ │ ├── back.svg │ │ ├── check-circle.svg │ │ ├── check-circle1.svg │ │ ├── clipboard.svg │ │ ├── filter.svg │ │ ├── flag.svg │ │ ├── foodnet-logo 1.svg │ │ ├── google.svg │ │ ├── help-circle.svg │ │ ├── hungary.png │ │ ├── loader.gif │ │ ├── logo-big.png │ │ ├── logo.svg │ │ ├── map-pin-grey.svg │ │ ├── map-pin.svg │ │ ├── percent.svg │ │ ├── reply_24px_outlined.svg │ │ ├── romania.png │ │ ├── search.svg │ │ ├── shopping-bag.svg │ │ ├── shopping-bag1.svg │ │ ├── star.svg │ │ ├── star2.svg │ │ ├── trash-2.svg │ │ ├── trash-5.svg │ │ ├── united-states.png │ │ └── user.svg │ ├── images │ │ ├── background.jpg │ │ ├── bg.jpg │ │ ├── loader1.gif │ │ ├── loaderimg.gif │ │ └── pizza.png │ ├── languages │ │ ├── en.json │ │ ├── hu.json │ │ └── ro.json │ ├── nodes │ │ ├── @codler.zip │ │ ├── react-native-code-input.zip │ │ ├── react-native-material-textfield.zip │ │ ├── react-native-swiper.zip │ │ └── react-native-tab-view.zip │ ├── package.json │ └── screens │ │ ├── Forgot.js │ │ └── temp.json ├── components │ ├── Athena │ │ ├── Card.js │ │ ├── Loading.js │ │ └── Picker.js │ ├── Cities.js │ ├── Dashboard │ │ ├── Featured.js │ │ ├── Filters.js │ │ ├── Result.js │ │ ├── Trendy.js │ │ └── index.js │ ├── Restaurant │ │ ├── Information.js │ │ ├── Menu.js │ │ ├── MenuS.js │ │ └── Reviews.js │ ├── Splash.js │ ├── index.js │ └── package.json ├── constants │ ├── assets.js │ ├── configs.js │ ├── package.json │ ├── regexs.js │ ├── svgs.js │ └── themes.js ├── modules │ ├── index.js │ ├── package.json │ ├── reducers │ │ ├── auth │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── types.js │ │ ├── food │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── types.js │ │ └── profile │ │ │ ├── actions.js │ │ │ ├── index.js │ │ │ └── types.js │ ├── services │ │ ├── AuthService.js │ │ ├── FoodService.js │ │ ├── ProfileService.js │ │ └── index.js │ └── stores │ │ ├── AuthStore.js │ │ └── index.js ├── navigations │ ├── DrawerNavigator.js │ ├── StackNavigators │ │ ├── AuthStackNavigator.js │ │ ├── CartStackNavigator.js │ │ ├── DeliveryStackNavigator.js │ │ ├── HomeStackNavigator.js │ │ ├── OrderStackNavigator.js │ │ └── ProfileStackNavigator.js │ ├── index.js │ └── package.json ├── screens │ ├── Athena │ │ ├── Errors.js │ │ ├── Internet.js │ │ ├── Languages.js │ │ └── Success.js │ ├── Auth │ │ ├── Cities.js │ │ ├── Forgot.js │ │ ├── Reset.js │ │ ├── SignIn.js │ │ ├── SignUp.js │ │ └── index.js │ ├── Cart │ │ ├── CartDetail.js │ │ └── CartIndex.js │ ├── Delivery │ │ ├── DeliveryAdd.js │ │ └── DeliveryList.js │ ├── Home │ │ ├── Detail.js │ │ ├── Details.js │ │ ├── Extra.js │ │ └── index.js │ ├── Order │ │ ├── OrderDetail.js │ │ ├── OrderIndex.js │ │ └── OrderSuccess.js │ ├── Profile │ │ ├── CouponCodes.js │ │ ├── ProfileDelete.js │ │ ├── ProfileEdit.js │ │ ├── ProfilePassword.js │ │ └── index.js │ ├── Review │ │ ├── ReviewAdd.js │ │ ├── ReviewDelete.js │ │ └── ReviewList.js │ ├── index.js │ └── package.json └── utils │ ├── axios.js │ ├── functions.js │ ├── i18n.js │ └── package.json └── yarn.lock /.expo/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/.expo/settings.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/App.js -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/foodnet/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/debug/java/com/foodnet/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/index.android.bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/assets/index.android.bundle -------------------------------------------------------------------------------- /android/app/src/main/java/com/foodnet/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/java/com/foodnet/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/foodnet/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/java/com/foodnet/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_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/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/foodnet-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/foodnet-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/foodnet.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/foodnet.xcodeproj/xcshareddata/xcschemes/foodnet-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet.xcodeproj/xcshareddata/xcschemes/foodnet-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/foodnet.xcodeproj/xcshareddata/xcschemes/foodnet.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet.xcodeproj/xcshareddata/xcschemes/foodnet.xcscheme -------------------------------------------------------------------------------- /ios/foodnet.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/foodnet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/foodnet/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/AppDelegate.h -------------------------------------------------------------------------------- /ios/foodnet/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/AppDelegate.m -------------------------------------------------------------------------------- /ios/foodnet/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/foodnet/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/foodnet/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/foodnet/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/Info.plist -------------------------------------------------------------------------------- /ios/foodnet/hu.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/hu.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/foodnet/hu.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/hu.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /ios/foodnet/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/main.m -------------------------------------------------------------------------------- /ios/foodnet/ro.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/ro.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/foodnet/ro.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnet/ro.lproj/LaunchScreen.strings -------------------------------------------------------------------------------- /ios/foodnetTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnetTests/Info.plist -------------------------------------------------------------------------------- /ios/foodnetTests/foodnetTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/ios/foodnetTests/foodnetTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/icons/Left Accessory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/Left Accessory.svg -------------------------------------------------------------------------------- /src/assets/icons/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/Vector.svg -------------------------------------------------------------------------------- /src/assets/icons/alert-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/alert-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/alert-circle1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/alert-circle1.svg -------------------------------------------------------------------------------- /src/assets/icons/back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/back.svg -------------------------------------------------------------------------------- /src/assets/icons/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/check-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/check-circle1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/check-circle1.svg -------------------------------------------------------------------------------- /src/assets/icons/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/clipboard.svg -------------------------------------------------------------------------------- /src/assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/filter.svg -------------------------------------------------------------------------------- /src/assets/icons/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/flag.svg -------------------------------------------------------------------------------- /src/assets/icons/foodnet-logo 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/foodnet-logo 1.svg -------------------------------------------------------------------------------- /src/assets/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/google.svg -------------------------------------------------------------------------------- /src/assets/icons/help-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/help-circle.svg -------------------------------------------------------------------------------- /src/assets/icons/hungary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/hungary.png -------------------------------------------------------------------------------- /src/assets/icons/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/loader.gif -------------------------------------------------------------------------------- /src/assets/icons/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/logo-big.png -------------------------------------------------------------------------------- /src/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/logo.svg -------------------------------------------------------------------------------- /src/assets/icons/map-pin-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/map-pin-grey.svg -------------------------------------------------------------------------------- /src/assets/icons/map-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/map-pin.svg -------------------------------------------------------------------------------- /src/assets/icons/percent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/percent.svg -------------------------------------------------------------------------------- /src/assets/icons/reply_24px_outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/reply_24px_outlined.svg -------------------------------------------------------------------------------- /src/assets/icons/romania.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/romania.png -------------------------------------------------------------------------------- /src/assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/search.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/shopping-bag.svg -------------------------------------------------------------------------------- /src/assets/icons/shopping-bag1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/shopping-bag1.svg -------------------------------------------------------------------------------- /src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/star.svg -------------------------------------------------------------------------------- /src/assets/icons/star2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/star2.svg -------------------------------------------------------------------------------- /src/assets/icons/trash-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/trash-2.svg -------------------------------------------------------------------------------- /src/assets/icons/trash-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/trash-5.svg -------------------------------------------------------------------------------- /src/assets/icons/united-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/united-states.png -------------------------------------------------------------------------------- /src/assets/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/icons/user.svg -------------------------------------------------------------------------------- /src/assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/images/background.jpg -------------------------------------------------------------------------------- /src/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/images/bg.jpg -------------------------------------------------------------------------------- /src/assets/images/loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/images/loader1.gif -------------------------------------------------------------------------------- /src/assets/images/loaderimg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/images/loaderimg.gif -------------------------------------------------------------------------------- /src/assets/images/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/images/pizza.png -------------------------------------------------------------------------------- /src/assets/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/languages/en.json -------------------------------------------------------------------------------- /src/assets/languages/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/languages/hu.json -------------------------------------------------------------------------------- /src/assets/languages/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/languages/ro.json -------------------------------------------------------------------------------- /src/assets/nodes/@codler.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/nodes/@codler.zip -------------------------------------------------------------------------------- /src/assets/nodes/react-native-code-input.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/nodes/react-native-code-input.zip -------------------------------------------------------------------------------- /src/assets/nodes/react-native-material-textfield.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/nodes/react-native-material-textfield.zip -------------------------------------------------------------------------------- /src/assets/nodes/react-native-swiper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/nodes/react-native-swiper.zip -------------------------------------------------------------------------------- /src/assets/nodes/react-native-tab-view.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/nodes/react-native-tab-view.zip -------------------------------------------------------------------------------- /src/assets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@assets" 3 | } -------------------------------------------------------------------------------- /src/assets/screens/Forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/screens/Forgot.js -------------------------------------------------------------------------------- /src/assets/screens/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/assets/screens/temp.json -------------------------------------------------------------------------------- /src/components/Athena/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Athena/Card.js -------------------------------------------------------------------------------- /src/components/Athena/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Athena/Loading.js -------------------------------------------------------------------------------- /src/components/Athena/Picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Athena/Picker.js -------------------------------------------------------------------------------- /src/components/Cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Cities.js -------------------------------------------------------------------------------- /src/components/Dashboard/Featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Dashboard/Featured.js -------------------------------------------------------------------------------- /src/components/Dashboard/Filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Dashboard/Filters.js -------------------------------------------------------------------------------- /src/components/Dashboard/Result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Dashboard/Result.js -------------------------------------------------------------------------------- /src/components/Dashboard/Trendy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Dashboard/Trendy.js -------------------------------------------------------------------------------- /src/components/Dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Dashboard/index.js -------------------------------------------------------------------------------- /src/components/Restaurant/Information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Restaurant/Information.js -------------------------------------------------------------------------------- /src/components/Restaurant/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Restaurant/Menu.js -------------------------------------------------------------------------------- /src/components/Restaurant/MenuS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Restaurant/MenuS.js -------------------------------------------------------------------------------- /src/components/Restaurant/Reviews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Restaurant/Reviews.js -------------------------------------------------------------------------------- /src/components/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/Splash.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@components" 3 | } -------------------------------------------------------------------------------- /src/constants/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/constants/assets.js -------------------------------------------------------------------------------- /src/constants/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/constants/configs.js -------------------------------------------------------------------------------- /src/constants/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@constants" 3 | } -------------------------------------------------------------------------------- /src/constants/regexs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/constants/regexs.js -------------------------------------------------------------------------------- /src/constants/svgs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/constants/svgs.js -------------------------------------------------------------------------------- /src/constants/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/constants/themes.js -------------------------------------------------------------------------------- /src/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/index.js -------------------------------------------------------------------------------- /src/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@modules" 3 | } -------------------------------------------------------------------------------- /src/modules/reducers/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/auth/actions.js -------------------------------------------------------------------------------- /src/modules/reducers/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/auth/index.js -------------------------------------------------------------------------------- /src/modules/reducers/auth/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/auth/types.js -------------------------------------------------------------------------------- /src/modules/reducers/food/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/food/actions.js -------------------------------------------------------------------------------- /src/modules/reducers/food/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/food/index.js -------------------------------------------------------------------------------- /src/modules/reducers/food/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/food/types.js -------------------------------------------------------------------------------- /src/modules/reducers/profile/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/profile/actions.js -------------------------------------------------------------------------------- /src/modules/reducers/profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/profile/index.js -------------------------------------------------------------------------------- /src/modules/reducers/profile/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/reducers/profile/types.js -------------------------------------------------------------------------------- /src/modules/services/AuthService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/services/AuthService.js -------------------------------------------------------------------------------- /src/modules/services/FoodService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/services/FoodService.js -------------------------------------------------------------------------------- /src/modules/services/ProfileService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/services/ProfileService.js -------------------------------------------------------------------------------- /src/modules/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/services/index.js -------------------------------------------------------------------------------- /src/modules/stores/AuthStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/stores/AuthStore.js -------------------------------------------------------------------------------- /src/modules/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/modules/stores/index.js -------------------------------------------------------------------------------- /src/navigations/DrawerNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/DrawerNavigator.js -------------------------------------------------------------------------------- /src/navigations/StackNavigators/AuthStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/StackNavigators/AuthStackNavigator.js -------------------------------------------------------------------------------- /src/navigations/StackNavigators/CartStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/StackNavigators/CartStackNavigator.js -------------------------------------------------------------------------------- /src/navigations/StackNavigators/DeliveryStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/StackNavigators/DeliveryStackNavigator.js -------------------------------------------------------------------------------- /src/navigations/StackNavigators/HomeStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/StackNavigators/HomeStackNavigator.js -------------------------------------------------------------------------------- /src/navigations/StackNavigators/OrderStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/StackNavigators/OrderStackNavigator.js -------------------------------------------------------------------------------- /src/navigations/StackNavigators/ProfileStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/StackNavigators/ProfileStackNavigator.js -------------------------------------------------------------------------------- /src/navigations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/navigations/index.js -------------------------------------------------------------------------------- /src/navigations/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@navigations" 3 | } -------------------------------------------------------------------------------- /src/screens/Athena/Errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Athena/Errors.js -------------------------------------------------------------------------------- /src/screens/Athena/Internet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Athena/Internet.js -------------------------------------------------------------------------------- /src/screens/Athena/Languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Athena/Languages.js -------------------------------------------------------------------------------- /src/screens/Athena/Success.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Athena/Success.js -------------------------------------------------------------------------------- /src/screens/Auth/Cities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Auth/Cities.js -------------------------------------------------------------------------------- /src/screens/Auth/Forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Auth/Forgot.js -------------------------------------------------------------------------------- /src/screens/Auth/Reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Auth/Reset.js -------------------------------------------------------------------------------- /src/screens/Auth/SignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Auth/SignIn.js -------------------------------------------------------------------------------- /src/screens/Auth/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Auth/SignUp.js -------------------------------------------------------------------------------- /src/screens/Auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Auth/index.js -------------------------------------------------------------------------------- /src/screens/Cart/CartDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Cart/CartDetail.js -------------------------------------------------------------------------------- /src/screens/Cart/CartIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Cart/CartIndex.js -------------------------------------------------------------------------------- /src/screens/Delivery/DeliveryAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Delivery/DeliveryAdd.js -------------------------------------------------------------------------------- /src/screens/Delivery/DeliveryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Delivery/DeliveryList.js -------------------------------------------------------------------------------- /src/screens/Home/Detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Home/Detail.js -------------------------------------------------------------------------------- /src/screens/Home/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Home/Details.js -------------------------------------------------------------------------------- /src/screens/Home/Extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Home/Extra.js -------------------------------------------------------------------------------- /src/screens/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Home/index.js -------------------------------------------------------------------------------- /src/screens/Order/OrderDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Order/OrderDetail.js -------------------------------------------------------------------------------- /src/screens/Order/OrderIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Order/OrderIndex.js -------------------------------------------------------------------------------- /src/screens/Order/OrderSuccess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Order/OrderSuccess.js -------------------------------------------------------------------------------- /src/screens/Profile/CouponCodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Profile/CouponCodes.js -------------------------------------------------------------------------------- /src/screens/Profile/ProfileDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Profile/ProfileDelete.js -------------------------------------------------------------------------------- /src/screens/Profile/ProfileEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Profile/ProfileEdit.js -------------------------------------------------------------------------------- /src/screens/Profile/ProfilePassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Profile/ProfilePassword.js -------------------------------------------------------------------------------- /src/screens/Profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Profile/index.js -------------------------------------------------------------------------------- /src/screens/Review/ReviewAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Review/ReviewAdd.js -------------------------------------------------------------------------------- /src/screens/Review/ReviewDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Review/ReviewDelete.js -------------------------------------------------------------------------------- /src/screens/Review/ReviewList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/Review/ReviewList.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/screens/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@screens" 3 | } -------------------------------------------------------------------------------- /src/utils/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/utils/axios.js -------------------------------------------------------------------------------- /src/utils/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/utils/functions.js -------------------------------------------------------------------------------- /src/utils/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/src/utils/i18n.js -------------------------------------------------------------------------------- /src/utils/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@utils" 3 | } -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Foodnet_ReactNative/HEAD/yarn.lock --------------------------------------------------------------------------------