├── .buckconfig ├── .env ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── Lato-Black.ttf │ │ │ ├── Lato-Medium.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── Lato-Semibold.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── OpenSans-Bold.ttf │ │ │ ├── OpenSans-Light.ttf │ │ │ ├── OpenSans-Semibold.ttf │ │ │ ├── OpenSans.ttf │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── restaurant_client │ │ │ ├── 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 ├── Restaurant_Client-tvOS │ └── Info.plist ├── Restaurant_Client-tvOSTests │ └── Info.plist ├── Restaurant_Client.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Restaurant_Client-tvOS.xcscheme │ │ └── Restaurant_Client.xcscheme ├── Restaurant_Client │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── Restaurant_ClientTests │ ├── Info.plist │ └── Restaurant_ClientTests.m ├── metro.config.js ├── package.json └── src ├── _actions ├── menus.js ├── orders.js ├── timer.js └── transaction.js ├── _navigator └── index.js ├── _reducers ├── menus.js ├── orders.js ├── timer.js └── transaction.js ├── _redux ├── middleware.js └── store.js ├── assets ├── fonts │ ├── 6767714a-c84e-4ab6-8bba-683f93be9977.png │ ├── Lato-Black.ttf │ ├── Lato-Medium.ttf │ ├── Lato-Regular.ttf │ ├── Lato-Semibold.ttf │ ├── Montserrat-Regular.ttf │ ├── OpenSans-Bold.ttf │ ├── OpenSans-Light.ttf │ ├── OpenSans-Semibold.ttf │ ├── OpenSans.ttf │ └── download.png └── images │ ├── banner.png │ ├── promo.gif │ ├── thanks.png │ └── thankyou.gif ├── component ├── Bill.js ├── DetailTransaction.js ├── MenuItem.js ├── OrderItem.js └── OrderList.js ├── config.js ├── constants ├── functions.js └── styles.js └── screens ├── Finished.js ├── Main └── Home.js ├── Splash.js └── TableNum.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/.buckconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | API_URL=https://restaurantpointofsale.herokuapp.com -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Lato-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Lato-Semibold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/restaurant_client/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/java/com/restaurant_client/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/restaurant_client/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/java/com/restaurant_client/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/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/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Restaurant_Client-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/Restaurant_Client-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/Restaurant_Client.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Restaurant_Client.xcodeproj/xcshareddata/xcschemes/Restaurant_Client-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client.xcodeproj/xcshareddata/xcschemes/Restaurant_Client-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/Restaurant_Client.xcodeproj/xcshareddata/xcschemes/Restaurant_Client.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client.xcodeproj/xcshareddata/xcschemes/Restaurant_Client.xcscheme -------------------------------------------------------------------------------- /ios/Restaurant_Client/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/AppDelegate.h -------------------------------------------------------------------------------- /ios/Restaurant_Client/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/AppDelegate.m -------------------------------------------------------------------------------- /ios/Restaurant_Client/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/Restaurant_Client/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Restaurant_Client/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/Restaurant_Client/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/Info.plist -------------------------------------------------------------------------------- /ios/Restaurant_Client/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_Client/main.m -------------------------------------------------------------------------------- /ios/Restaurant_ClientTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_ClientTests/Info.plist -------------------------------------------------------------------------------- /ios/Restaurant_ClientTests/Restaurant_ClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/ios/Restaurant_ClientTests/Restaurant_ClientTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/package.json -------------------------------------------------------------------------------- /src/_actions/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_actions/menus.js -------------------------------------------------------------------------------- /src/_actions/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_actions/orders.js -------------------------------------------------------------------------------- /src/_actions/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_actions/timer.js -------------------------------------------------------------------------------- /src/_actions/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_actions/transaction.js -------------------------------------------------------------------------------- /src/_navigator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_navigator/index.js -------------------------------------------------------------------------------- /src/_reducers/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_reducers/menus.js -------------------------------------------------------------------------------- /src/_reducers/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_reducers/orders.js -------------------------------------------------------------------------------- /src/_reducers/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_reducers/timer.js -------------------------------------------------------------------------------- /src/_reducers/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_reducers/transaction.js -------------------------------------------------------------------------------- /src/_redux/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_redux/middleware.js -------------------------------------------------------------------------------- /src/_redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/_redux/store.js -------------------------------------------------------------------------------- /src/assets/fonts/6767714a-c84e-4ab6-8bba-683f93be9977.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/6767714a-c84e-4ab6-8bba-683f93be9977.png -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/Lato-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/Lato-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/Lato-Semibold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/OpenSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/OpenSans.ttf -------------------------------------------------------------------------------- /src/assets/fonts/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/fonts/download.png -------------------------------------------------------------------------------- /src/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/images/banner.png -------------------------------------------------------------------------------- /src/assets/images/promo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/images/promo.gif -------------------------------------------------------------------------------- /src/assets/images/thanks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/images/thanks.png -------------------------------------------------------------------------------- /src/assets/images/thankyou.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/assets/images/thankyou.gif -------------------------------------------------------------------------------- /src/component/Bill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/component/Bill.js -------------------------------------------------------------------------------- /src/component/DetailTransaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/component/DetailTransaction.js -------------------------------------------------------------------------------- /src/component/MenuItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/component/MenuItem.js -------------------------------------------------------------------------------- /src/component/OrderItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/component/OrderItem.js -------------------------------------------------------------------------------- /src/component/OrderList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/component/OrderList.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/config.js -------------------------------------------------------------------------------- /src/constants/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/constants/functions.js -------------------------------------------------------------------------------- /src/constants/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/constants/styles.js -------------------------------------------------------------------------------- /src/screens/Finished.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/screens/Finished.js -------------------------------------------------------------------------------- /src/screens/Main/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/screens/Main/Home.js -------------------------------------------------------------------------------- /src/screens/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/screens/Splash.js -------------------------------------------------------------------------------- /src/screens/TableNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anggaprytn/Restaurant_Client/HEAD/src/screens/TableNum.js --------------------------------------------------------------------------------