├── .babelrc ├── .buckconfig ├── .eslintrc.json ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Light.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── RobotoSlab-Thin.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── restaurantapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── app ├── App.js ├── base_components │ ├── AppBase.js │ ├── BR.js │ ├── FlatButton.js │ ├── LoadingFood.js │ ├── LoadingView.js │ ├── PrimaryText.js │ ├── RippleIcon.js │ ├── RoundButton.js │ ├── SecondaryText.js │ ├── Section.js │ ├── TextButton.js │ ├── TextInput.js │ └── ViewRow.js ├── components │ ├── .gitkeep │ ├── Checkout │ │ ├── BillReceipt.js │ │ ├── CounterButton.js │ │ ├── Item.js │ │ └── Title.js │ ├── CuisineGrid.js │ ├── DrawerImage.js │ ├── FilterModal.js │ ├── FilterRadioModal.js │ ├── FoodItem.js │ ├── Login.js │ ├── RestaurantItem.js │ ├── RestaurantList.js │ ├── RightHeaderButtons.js │ └── Signup.js ├── router.js └── screens │ ├── CartScreen.js │ ├── CuisineRestaurantsScreen.js │ ├── HomeScreen.js │ ├── LoginScreen.js │ ├── OrderListScreen.js │ ├── Payment │ ├── Complete.js │ ├── Failed.js │ └── Home.js │ ├── RestaurantInfoScreen.js │ ├── SideDrawer.js │ └── SignupScreen.js ├── assets ├── fonts │ ├── RobotoSlab-Bold.ttf │ ├── RobotoSlab-Light.ttf │ ├── RobotoSlab-Regular.ttf │ └── RobotoSlab-Thin.ttf └── images │ ├── banana.png │ ├── beverages.png │ ├── biryani.png │ ├── check.png │ ├── chinese.png │ ├── cross.png │ ├── desserts.png │ ├── food.jpeg │ ├── foodBg.png │ ├── foodBg2.png │ ├── ice-creams.png │ ├── mexican.png │ ├── north-indian.png │ ├── pizza (1).png │ ├── pizza.png │ ├── placeholder-food.png │ ├── placeholder-res.png │ └── south-indian.png ├── index.android.js ├── index.ios.js ├── index.web.js ├── ios ├── RestaurantApp-tvOS │ └── Info.plist ├── RestaurantApp-tvOSTests │ └── Info.plist ├── RestaurantApp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── RestaurantApp-tvOS.xcscheme │ │ └── RestaurantApp.xcscheme ├── RestaurantApp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── RestaurantAppTests │ ├── Info.plist │ └── RestaurantAppTests.m ├── package.json ├── screenshots ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png ├── src ├── actions │ ├── cart.js │ └── index.js ├── constants │ ├── assets.js │ ├── colors.js │ └── images.js ├── reducers │ ├── authReducer.js │ ├── cart.js │ ├── foodsReducer.js │ ├── index.js │ ├── myReducer.js │ ├── ordersReducer.js │ └── restaurantReducer.js ├── sagas │ ├── authSaga.js │ ├── cart │ │ ├── cartItemsAddSaga.js │ │ ├── cartItemsCleanSaga.js │ │ ├── cartItemsDeleteSaga.js │ │ ├── cartItemsFetchSaga.js │ │ └── cartItemsUpdateQtySaga.js │ ├── cuisineTypeSaga.js │ ├── index.js │ ├── orderSaga.js │ ├── restaurantByTypeSaga.js │ └── restaurantSaga.js ├── service │ ├── api_constants.js │ ├── food.js │ ├── login.js │ ├── orders.js │ ├── request.js │ └── restaurants.js ├── store │ └── index.js └── utils │ ├── array.js │ └── displayPaymentModal.js ├── web ├── App.js ├── base_components │ ├── AppBase.js │ ├── Button.js │ ├── FoodItem.js │ ├── Loader.js │ ├── RestaurantItem.js │ ├── StatusBar.js │ ├── checkout │ │ ├── BillReceipt.js │ │ └── CounterButton.js │ └── sharedComponents.js ├── components │ ├── LoginForm.js │ └── cuisinesAndRestaurants │ │ ├── CuisineGrid.js │ │ └── RestaurantGrid.js ├── index.html ├── index.scss ├── routes.js └── screens │ ├── CartScreen.js │ ├── HomeScreen.js │ ├── LoginScreen.js │ ├── OrdersList.js │ ├── RestaurantInfoScreen.js │ └── payment │ ├── Failure.js │ └── Home.js ├── webpack ├── webpack.common.js ├── webpack.config.js └── webpack.prod.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/README.md -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoSlab-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/RobotoSlab-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/RobotoSlab-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/RobotoSlab-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/restaurantapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/java/com/restaurantapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/restaurantapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/java/com/restaurantapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app.json -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/App.js -------------------------------------------------------------------------------- /app/base_components/AppBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/AppBase.js -------------------------------------------------------------------------------- /app/base_components/BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/BR.js -------------------------------------------------------------------------------- /app/base_components/FlatButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/FlatButton.js -------------------------------------------------------------------------------- /app/base_components/LoadingFood.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/LoadingFood.js -------------------------------------------------------------------------------- /app/base_components/LoadingView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/LoadingView.js -------------------------------------------------------------------------------- /app/base_components/PrimaryText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/PrimaryText.js -------------------------------------------------------------------------------- /app/base_components/RippleIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/RippleIcon.js -------------------------------------------------------------------------------- /app/base_components/RoundButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/RoundButton.js -------------------------------------------------------------------------------- /app/base_components/SecondaryText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/SecondaryText.js -------------------------------------------------------------------------------- /app/base_components/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/Section.js -------------------------------------------------------------------------------- /app/base_components/TextButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/TextButton.js -------------------------------------------------------------------------------- /app/base_components/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/TextInput.js -------------------------------------------------------------------------------- /app/base_components/ViewRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/base_components/ViewRow.js -------------------------------------------------------------------------------- /app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/Checkout/BillReceipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/Checkout/BillReceipt.js -------------------------------------------------------------------------------- /app/components/Checkout/CounterButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/Checkout/CounterButton.js -------------------------------------------------------------------------------- /app/components/Checkout/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/Checkout/Item.js -------------------------------------------------------------------------------- /app/components/Checkout/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/Checkout/Title.js -------------------------------------------------------------------------------- /app/components/CuisineGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/CuisineGrid.js -------------------------------------------------------------------------------- /app/components/DrawerImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/DrawerImage.js -------------------------------------------------------------------------------- /app/components/FilterModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/FilterModal.js -------------------------------------------------------------------------------- /app/components/FilterRadioModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/FilterRadioModal.js -------------------------------------------------------------------------------- /app/components/FoodItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/FoodItem.js -------------------------------------------------------------------------------- /app/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/Login.js -------------------------------------------------------------------------------- /app/components/RestaurantItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/RestaurantItem.js -------------------------------------------------------------------------------- /app/components/RestaurantList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/RestaurantList.js -------------------------------------------------------------------------------- /app/components/RightHeaderButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/RightHeaderButtons.js -------------------------------------------------------------------------------- /app/components/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/components/Signup.js -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/router.js -------------------------------------------------------------------------------- /app/screens/CartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/CartScreen.js -------------------------------------------------------------------------------- /app/screens/CuisineRestaurantsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/CuisineRestaurantsScreen.js -------------------------------------------------------------------------------- /app/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/HomeScreen.js -------------------------------------------------------------------------------- /app/screens/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/LoginScreen.js -------------------------------------------------------------------------------- /app/screens/OrderListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/OrderListScreen.js -------------------------------------------------------------------------------- /app/screens/Payment/Complete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/Payment/Complete.js -------------------------------------------------------------------------------- /app/screens/Payment/Failed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/Payment/Failed.js -------------------------------------------------------------------------------- /app/screens/Payment/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/Payment/Home.js -------------------------------------------------------------------------------- /app/screens/RestaurantInfoScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/RestaurantInfoScreen.js -------------------------------------------------------------------------------- /app/screens/SideDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/SideDrawer.js -------------------------------------------------------------------------------- /app/screens/SignupScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/app/screens/SignupScreen.js -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/fonts/RobotoSlab-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/fonts/RobotoSlab-Thin.ttf -------------------------------------------------------------------------------- /assets/images/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/banana.png -------------------------------------------------------------------------------- /assets/images/beverages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/beverages.png -------------------------------------------------------------------------------- /assets/images/biryani.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/biryani.png -------------------------------------------------------------------------------- /assets/images/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/check.png -------------------------------------------------------------------------------- /assets/images/chinese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/chinese.png -------------------------------------------------------------------------------- /assets/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/cross.png -------------------------------------------------------------------------------- /assets/images/desserts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/desserts.png -------------------------------------------------------------------------------- /assets/images/food.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/food.jpeg -------------------------------------------------------------------------------- /assets/images/foodBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/foodBg.png -------------------------------------------------------------------------------- /assets/images/foodBg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/foodBg2.png -------------------------------------------------------------------------------- /assets/images/ice-creams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/ice-creams.png -------------------------------------------------------------------------------- /assets/images/mexican.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/mexican.png -------------------------------------------------------------------------------- /assets/images/north-indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/north-indian.png -------------------------------------------------------------------------------- /assets/images/pizza (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/pizza (1).png -------------------------------------------------------------------------------- /assets/images/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/pizza.png -------------------------------------------------------------------------------- /assets/images/placeholder-food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/placeholder-food.png -------------------------------------------------------------------------------- /assets/images/placeholder-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/placeholder-res.png -------------------------------------------------------------------------------- /assets/images/south-indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/assets/images/south-indian.png -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/index.ios.js -------------------------------------------------------------------------------- /index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/index.web.js -------------------------------------------------------------------------------- /ios/RestaurantApp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/RestaurantApp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/RestaurantApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RestaurantApp.xcodeproj/xcshareddata/xcschemes/RestaurantApp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp.xcodeproj/xcshareddata/xcschemes/RestaurantApp-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/RestaurantApp.xcodeproj/xcshareddata/xcschemes/RestaurantApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp.xcodeproj/xcshareddata/xcschemes/RestaurantApp.xcscheme -------------------------------------------------------------------------------- /ios/RestaurantApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/AppDelegate.h -------------------------------------------------------------------------------- /ios/RestaurantApp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/AppDelegate.m -------------------------------------------------------------------------------- /ios/RestaurantApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/RestaurantApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/RestaurantApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/RestaurantApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/Info.plist -------------------------------------------------------------------------------- /ios/RestaurantApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantApp/main.m -------------------------------------------------------------------------------- /ios/RestaurantAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantAppTests/Info.plist -------------------------------------------------------------------------------- /ios/RestaurantAppTests/RestaurantAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/ios/RestaurantAppTests/RestaurantAppTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/screenshots/8.png -------------------------------------------------------------------------------- /src/actions/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/actions/cart.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/constants/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/constants/assets.js -------------------------------------------------------------------------------- /src/constants/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/constants/colors.js -------------------------------------------------------------------------------- /src/constants/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/constants/images.js -------------------------------------------------------------------------------- /src/reducers/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/authReducer.js -------------------------------------------------------------------------------- /src/reducers/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/cart.js -------------------------------------------------------------------------------- /src/reducers/foodsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/foodsReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/myReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/myReducer.js -------------------------------------------------------------------------------- /src/reducers/ordersReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/ordersReducer.js -------------------------------------------------------------------------------- /src/reducers/restaurantReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/reducers/restaurantReducer.js -------------------------------------------------------------------------------- /src/sagas/authSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/authSaga.js -------------------------------------------------------------------------------- /src/sagas/cart/cartItemsAddSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/cart/cartItemsAddSaga.js -------------------------------------------------------------------------------- /src/sagas/cart/cartItemsCleanSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/cart/cartItemsCleanSaga.js -------------------------------------------------------------------------------- /src/sagas/cart/cartItemsDeleteSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/cart/cartItemsDeleteSaga.js -------------------------------------------------------------------------------- /src/sagas/cart/cartItemsFetchSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/cart/cartItemsFetchSaga.js -------------------------------------------------------------------------------- /src/sagas/cart/cartItemsUpdateQtySaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/cart/cartItemsUpdateQtySaga.js -------------------------------------------------------------------------------- /src/sagas/cuisineTypeSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/cuisineTypeSaga.js -------------------------------------------------------------------------------- /src/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/index.js -------------------------------------------------------------------------------- /src/sagas/orderSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/orderSaga.js -------------------------------------------------------------------------------- /src/sagas/restaurantByTypeSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/restaurantByTypeSaga.js -------------------------------------------------------------------------------- /src/sagas/restaurantSaga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/sagas/restaurantSaga.js -------------------------------------------------------------------------------- /src/service/api_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/service/api_constants.js -------------------------------------------------------------------------------- /src/service/food.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/service/food.js -------------------------------------------------------------------------------- /src/service/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/service/login.js -------------------------------------------------------------------------------- /src/service/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/service/orders.js -------------------------------------------------------------------------------- /src/service/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/service/request.js -------------------------------------------------------------------------------- /src/service/restaurants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/service/restaurants.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/utils/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/utils/array.js -------------------------------------------------------------------------------- /src/utils/displayPaymentModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/src/utils/displayPaymentModal.js -------------------------------------------------------------------------------- /web/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/App.js -------------------------------------------------------------------------------- /web/base_components/AppBase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/AppBase.js -------------------------------------------------------------------------------- /web/base_components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/Button.js -------------------------------------------------------------------------------- /web/base_components/FoodItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/FoodItem.js -------------------------------------------------------------------------------- /web/base_components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/Loader.js -------------------------------------------------------------------------------- /web/base_components/RestaurantItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/RestaurantItem.js -------------------------------------------------------------------------------- /web/base_components/StatusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/StatusBar.js -------------------------------------------------------------------------------- /web/base_components/checkout/BillReceipt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/checkout/BillReceipt.js -------------------------------------------------------------------------------- /web/base_components/checkout/CounterButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/checkout/CounterButton.js -------------------------------------------------------------------------------- /web/base_components/sharedComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/base_components/sharedComponents.js -------------------------------------------------------------------------------- /web/components/LoginForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/components/LoginForm.js -------------------------------------------------------------------------------- /web/components/cuisinesAndRestaurants/CuisineGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/components/cuisinesAndRestaurants/CuisineGrid.js -------------------------------------------------------------------------------- /web/components/cuisinesAndRestaurants/RestaurantGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/components/cuisinesAndRestaurants/RestaurantGrid.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/index.html -------------------------------------------------------------------------------- /web/index.scss: -------------------------------------------------------------------------------- 1 | .cb { 2 | color: red; 3 | } 4 | @import url('https://fonts.googleapis.com/css?family=Roboto+Slab'); -------------------------------------------------------------------------------- /web/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/routes.js -------------------------------------------------------------------------------- /web/screens/CartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/CartScreen.js -------------------------------------------------------------------------------- /web/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/HomeScreen.js -------------------------------------------------------------------------------- /web/screens/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/LoginScreen.js -------------------------------------------------------------------------------- /web/screens/OrdersList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/OrdersList.js -------------------------------------------------------------------------------- /web/screens/RestaurantInfoScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/RestaurantInfoScreen.js -------------------------------------------------------------------------------- /web/screens/payment/Failure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/payment/Failure.js -------------------------------------------------------------------------------- /web/screens/payment/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/web/screens/payment/Home.js -------------------------------------------------------------------------------- /webpack/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/webpack/webpack.common.js -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/webpack/webpack.config.js -------------------------------------------------------------------------------- /webpack/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/webpack/webpack.prod.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Codebrahma/React-Native-Restaurant-App/HEAD/yarn.lock --------------------------------------------------------------------------------