├── .babelrc ├── .buckconfig ├── .eslintrc ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── Screen.pptx ├── __tests__ ├── index.android.js └── index.ios.js ├── a.json ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── myshop │ │ │ ├── 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.zip ├── images ├── 100.jpeg ├── 101.jpeg ├── 102.jpeg ├── 103.jpeg ├── 104.jpeg ├── 105.jpeg ├── 106.jpeg ├── 107.jpeg ├── 108.jpeg ├── 109.jpeg ├── 110.jpeg ├── 111.jpeg ├── 112.jpeg ├── 113.jpeg ├── 114.jpeg ├── 115.jpeg ├── 116.jpeg ├── 117.jpeg ├── 118.jpeg ├── 119.jpeg ├── 120.jpeg ├── 121.jpeg ├── 122.jpeg ├── 123.jpeg ├── 124.jpeg ├── 125.jpeg ├── 126.jpeg ├── 127.jpeg ├── 128.jpeg ├── 129.jpeg ├── 130.jpeg ├── 131.jpeg ├── 134.jpeg ├── 135.jpeg ├── 136.jpeg ├── 137.jpeg ├── 138.jpeg ├── 139.jpeg ├── 140.jpeg ├── 141.jpeg ├── 142.jpeg ├── 143.jpeg ├── 144.jpeg ├── 145.jpeg ├── 146.jpeg ├── 147.jpeg ├── 148.jpeg ├── 149.jpeg ├── 150.jpeg ├── 151.jpeg ├── 152.jpeg ├── 153.jpeg ├── 54.jpeg ├── 55.jpeg ├── 56.jpeg ├── 57.jpeg ├── 58.jpeg ├── 59.jpeg ├── 60.jpeg ├── 61.jpeg ├── 62.jpeg ├── 63.jpeg ├── 64.jpeg ├── 65.jpeg ├── 66.jpeg ├── 67.jpeg ├── 70.jpeg ├── 71.jpeg ├── 72.jpeg ├── 73.jpeg ├── 74.jpeg ├── 75.jpeg ├── 78.jpeg ├── 79.jpeg ├── 80.jpeg ├── 81.jpeg ├── 82.jpeg ├── 83.jpeg ├── 84.jpeg ├── 85.jpeg ├── 86.jpeg ├── 87.jpeg ├── 88.jpeg ├── 89.jpeg ├── 90.jpeg ├── 91.jpeg ├── 92.jpeg ├── 93.jpeg ├── 94.jpeg ├── 95.jpeg ├── 96.jpeg ├── 97.jpeg ├── 98.jpeg └── 99.jpeg ├── index.android.js ├── index.ios.js ├── ios ├── MyShop-tvOS │ └── Info.plist ├── MyShop-tvOSTests │ └── Info.plist ├── MyShop.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── MyShop-tvOS.xcscheme │ │ └── MyShop.xcscheme ├── MyShop │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── MyShopTests │ ├── Info.plist │ └── MyShopTests.m ├── package.json ├── screens.pdf ├── src ├── api │ ├── checkLogin.js │ ├── getCart.js │ ├── getListProduct.js │ ├── getOrderHistory.js │ ├── getToken.js │ ├── initData.js │ ├── refreshToken.js │ ├── register.js │ ├── saveCart.js │ ├── saveToken.js │ ├── searchProduct.js │ ├── sendOrder.js │ └── signIn.js ├── components │ ├── App.js │ ├── Authentication │ │ ├── Authentication.js │ │ ├── SignIn.js │ │ └── SignUp.js │ ├── ChangeInfo │ │ └── ChangeInfo.js │ ├── Main │ │ ├── Main.js │ │ ├── Menu.js │ │ └── Shop │ │ │ ├── Cart │ │ │ ├── Cart.js │ │ │ └── CartView.js │ │ │ ├── Contact │ │ │ └── Contact.js │ │ │ ├── Header.js │ │ │ ├── Home │ │ │ ├── Category.js │ │ │ ├── Collection.js │ │ │ ├── Home.js │ │ │ ├── HomeView.js │ │ │ └── TopProduct.js │ │ │ ├── ListProduct │ │ │ └── ListProduct.js │ │ │ ├── ProductDetail │ │ │ └── ProductDetail.js │ │ │ ├── Search │ │ │ ├── Search.js │ │ │ └── SearchView.js │ │ │ └── Shop.js │ ├── OrderHistory │ │ └── OrderHistory.js │ └── global.js └── media │ ├── appIcon │ ├── back.png │ ├── backList.png │ ├── back_white.png │ ├── backs.png │ ├── cart.png │ ├── cart0.png │ ├── cartfull.png │ ├── contact.png │ ├── contact0.png │ ├── home.png │ ├── home0.png │ ├── ic_logo.png │ ├── ic_menu.png │ ├── location.png │ ├── mail.png │ ├── map.png │ ├── maxi.jpeg │ ├── message.png │ ├── midi.jpeg │ ├── mini.jpeg │ ├── party.jpeg │ ├── phone.png │ ├── playground.png │ ├── playground0.png │ ├── search.png │ └── search0.png │ └── temp │ ├── 54.jpg │ ├── banner.jpg │ ├── fit.jpg │ ├── little.jpg │ ├── maxi.jpg │ ├── midi.jpg │ ├── mini.jpg │ ├── party.jpg │ ├── profile.png │ ├── sp1.jpeg │ ├── sp2.jpeg │ ├── sp3.jpeg │ ├── sp4.jpeg │ └── sp5.jpeg └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "rallycoding" 3 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Screen.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/Screen.pptx -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/a.json -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/myshop/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/src/main/java/com/myshop/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/myshop/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/src/main/java/com/myshop/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/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/vanpho93/LiveCodeReactNative/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/vanpho93/LiveCodeReactNative/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/vanpho93/LiveCodeReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/app.json -------------------------------------------------------------------------------- /app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/app.zip -------------------------------------------------------------------------------- /images/100.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/100.jpeg -------------------------------------------------------------------------------- /images/101.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/101.jpeg -------------------------------------------------------------------------------- /images/102.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/102.jpeg -------------------------------------------------------------------------------- /images/103.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/103.jpeg -------------------------------------------------------------------------------- /images/104.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/104.jpeg -------------------------------------------------------------------------------- /images/105.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/105.jpeg -------------------------------------------------------------------------------- /images/106.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/106.jpeg -------------------------------------------------------------------------------- /images/107.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/107.jpeg -------------------------------------------------------------------------------- /images/108.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/108.jpeg -------------------------------------------------------------------------------- /images/109.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/109.jpeg -------------------------------------------------------------------------------- /images/110.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/110.jpeg -------------------------------------------------------------------------------- /images/111.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/111.jpeg -------------------------------------------------------------------------------- /images/112.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/112.jpeg -------------------------------------------------------------------------------- /images/113.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/113.jpeg -------------------------------------------------------------------------------- /images/114.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/114.jpeg -------------------------------------------------------------------------------- /images/115.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/115.jpeg -------------------------------------------------------------------------------- /images/116.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/116.jpeg -------------------------------------------------------------------------------- /images/117.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/117.jpeg -------------------------------------------------------------------------------- /images/118.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/118.jpeg -------------------------------------------------------------------------------- /images/119.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/119.jpeg -------------------------------------------------------------------------------- /images/120.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/120.jpeg -------------------------------------------------------------------------------- /images/121.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/121.jpeg -------------------------------------------------------------------------------- /images/122.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/122.jpeg -------------------------------------------------------------------------------- /images/123.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/123.jpeg -------------------------------------------------------------------------------- /images/124.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/124.jpeg -------------------------------------------------------------------------------- /images/125.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/125.jpeg -------------------------------------------------------------------------------- /images/126.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/126.jpeg -------------------------------------------------------------------------------- /images/127.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/127.jpeg -------------------------------------------------------------------------------- /images/128.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/128.jpeg -------------------------------------------------------------------------------- /images/129.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/129.jpeg -------------------------------------------------------------------------------- /images/130.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/130.jpeg -------------------------------------------------------------------------------- /images/131.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/131.jpeg -------------------------------------------------------------------------------- /images/134.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/134.jpeg -------------------------------------------------------------------------------- /images/135.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/135.jpeg -------------------------------------------------------------------------------- /images/136.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/136.jpeg -------------------------------------------------------------------------------- /images/137.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/137.jpeg -------------------------------------------------------------------------------- /images/138.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/138.jpeg -------------------------------------------------------------------------------- /images/139.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/139.jpeg -------------------------------------------------------------------------------- /images/140.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/140.jpeg -------------------------------------------------------------------------------- /images/141.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/141.jpeg -------------------------------------------------------------------------------- /images/142.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/142.jpeg -------------------------------------------------------------------------------- /images/143.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/143.jpeg -------------------------------------------------------------------------------- /images/144.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/144.jpeg -------------------------------------------------------------------------------- /images/145.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/145.jpeg -------------------------------------------------------------------------------- /images/146.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/146.jpeg -------------------------------------------------------------------------------- /images/147.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/147.jpeg -------------------------------------------------------------------------------- /images/148.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/148.jpeg -------------------------------------------------------------------------------- /images/149.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/149.jpeg -------------------------------------------------------------------------------- /images/150.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/150.jpeg -------------------------------------------------------------------------------- /images/151.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/151.jpeg -------------------------------------------------------------------------------- /images/152.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/152.jpeg -------------------------------------------------------------------------------- /images/153.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/153.jpeg -------------------------------------------------------------------------------- /images/54.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/54.jpeg -------------------------------------------------------------------------------- /images/55.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/55.jpeg -------------------------------------------------------------------------------- /images/56.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/56.jpeg -------------------------------------------------------------------------------- /images/57.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/57.jpeg -------------------------------------------------------------------------------- /images/58.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/58.jpeg -------------------------------------------------------------------------------- /images/59.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/59.jpeg -------------------------------------------------------------------------------- /images/60.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/60.jpeg -------------------------------------------------------------------------------- /images/61.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/61.jpeg -------------------------------------------------------------------------------- /images/62.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/62.jpeg -------------------------------------------------------------------------------- /images/63.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/63.jpeg -------------------------------------------------------------------------------- /images/64.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/64.jpeg -------------------------------------------------------------------------------- /images/65.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/65.jpeg -------------------------------------------------------------------------------- /images/66.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/66.jpeg -------------------------------------------------------------------------------- /images/67.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/67.jpeg -------------------------------------------------------------------------------- /images/70.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/70.jpeg -------------------------------------------------------------------------------- /images/71.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/71.jpeg -------------------------------------------------------------------------------- /images/72.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/72.jpeg -------------------------------------------------------------------------------- /images/73.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/73.jpeg -------------------------------------------------------------------------------- /images/74.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/74.jpeg -------------------------------------------------------------------------------- /images/75.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/75.jpeg -------------------------------------------------------------------------------- /images/78.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/78.jpeg -------------------------------------------------------------------------------- /images/79.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/79.jpeg -------------------------------------------------------------------------------- /images/80.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/80.jpeg -------------------------------------------------------------------------------- /images/81.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/81.jpeg -------------------------------------------------------------------------------- /images/82.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/82.jpeg -------------------------------------------------------------------------------- /images/83.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/83.jpeg -------------------------------------------------------------------------------- /images/84.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/84.jpeg -------------------------------------------------------------------------------- /images/85.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/85.jpeg -------------------------------------------------------------------------------- /images/86.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/86.jpeg -------------------------------------------------------------------------------- /images/87.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/87.jpeg -------------------------------------------------------------------------------- /images/88.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/88.jpeg -------------------------------------------------------------------------------- /images/89.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/89.jpeg -------------------------------------------------------------------------------- /images/90.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/90.jpeg -------------------------------------------------------------------------------- /images/91.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/91.jpeg -------------------------------------------------------------------------------- /images/92.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/92.jpeg -------------------------------------------------------------------------------- /images/93.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/93.jpeg -------------------------------------------------------------------------------- /images/94.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/94.jpeg -------------------------------------------------------------------------------- /images/95.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/95.jpeg -------------------------------------------------------------------------------- /images/96.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/96.jpeg -------------------------------------------------------------------------------- /images/97.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/97.jpeg -------------------------------------------------------------------------------- /images/98.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/98.jpeg -------------------------------------------------------------------------------- /images/99.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/images/99.jpeg -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/MyShop-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/MyShop-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/MyShop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/MyShop.xcodeproj/xcshareddata/xcschemes/MyShop-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop.xcodeproj/xcshareddata/xcschemes/MyShop-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/MyShop.xcodeproj/xcshareddata/xcschemes/MyShop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop.xcodeproj/xcshareddata/xcschemes/MyShop.xcscheme -------------------------------------------------------------------------------- /ios/MyShop/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop/AppDelegate.h -------------------------------------------------------------------------------- /ios/MyShop/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop/AppDelegate.m -------------------------------------------------------------------------------- /ios/MyShop/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/MyShop/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/MyShop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop/Info.plist -------------------------------------------------------------------------------- /ios/MyShop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShop/main.m -------------------------------------------------------------------------------- /ios/MyShopTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShopTests/Info.plist -------------------------------------------------------------------------------- /ios/MyShopTests/MyShopTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/ios/MyShopTests/MyShopTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/package.json -------------------------------------------------------------------------------- /screens.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/screens.pdf -------------------------------------------------------------------------------- /src/api/checkLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/checkLogin.js -------------------------------------------------------------------------------- /src/api/getCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/getCart.js -------------------------------------------------------------------------------- /src/api/getListProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/getListProduct.js -------------------------------------------------------------------------------- /src/api/getOrderHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/getOrderHistory.js -------------------------------------------------------------------------------- /src/api/getToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/getToken.js -------------------------------------------------------------------------------- /src/api/initData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/initData.js -------------------------------------------------------------------------------- /src/api/refreshToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/refreshToken.js -------------------------------------------------------------------------------- /src/api/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/register.js -------------------------------------------------------------------------------- /src/api/saveCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/saveCart.js -------------------------------------------------------------------------------- /src/api/saveToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/saveToken.js -------------------------------------------------------------------------------- /src/api/searchProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/searchProduct.js -------------------------------------------------------------------------------- /src/api/sendOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/sendOrder.js -------------------------------------------------------------------------------- /src/api/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/api/signIn.js -------------------------------------------------------------------------------- /src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/App.js -------------------------------------------------------------------------------- /src/components/Authentication/Authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Authentication/Authentication.js -------------------------------------------------------------------------------- /src/components/Authentication/SignIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Authentication/SignIn.js -------------------------------------------------------------------------------- /src/components/Authentication/SignUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Authentication/SignUp.js -------------------------------------------------------------------------------- /src/components/ChangeInfo/ChangeInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/ChangeInfo/ChangeInfo.js -------------------------------------------------------------------------------- /src/components/Main/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Main.js -------------------------------------------------------------------------------- /src/components/Main/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Menu.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Cart/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Cart/Cart.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Cart/CartView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Cart/CartView.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Contact/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Contact/Contact.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Header.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Home/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Home/Category.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Home/Collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Home/Collection.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Home/Home.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Home/HomeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Home/HomeView.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Home/TopProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Home/TopProduct.js -------------------------------------------------------------------------------- /src/components/Main/Shop/ListProduct/ListProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/ListProduct/ListProduct.js -------------------------------------------------------------------------------- /src/components/Main/Shop/ProductDetail/ProductDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/ProductDetail/ProductDetail.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Search/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Search/Search.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Search/SearchView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Search/SearchView.js -------------------------------------------------------------------------------- /src/components/Main/Shop/Shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/Main/Shop/Shop.js -------------------------------------------------------------------------------- /src/components/OrderHistory/OrderHistory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/OrderHistory/OrderHistory.js -------------------------------------------------------------------------------- /src/components/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/components/global.js -------------------------------------------------------------------------------- /src/media/appIcon/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/back.png -------------------------------------------------------------------------------- /src/media/appIcon/backList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/backList.png -------------------------------------------------------------------------------- /src/media/appIcon/back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/back_white.png -------------------------------------------------------------------------------- /src/media/appIcon/backs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/backs.png -------------------------------------------------------------------------------- /src/media/appIcon/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/cart.png -------------------------------------------------------------------------------- /src/media/appIcon/cart0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/cart0.png -------------------------------------------------------------------------------- /src/media/appIcon/cartfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/cartfull.png -------------------------------------------------------------------------------- /src/media/appIcon/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/contact.png -------------------------------------------------------------------------------- /src/media/appIcon/contact0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/contact0.png -------------------------------------------------------------------------------- /src/media/appIcon/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/home.png -------------------------------------------------------------------------------- /src/media/appIcon/home0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/home0.png -------------------------------------------------------------------------------- /src/media/appIcon/ic_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/ic_logo.png -------------------------------------------------------------------------------- /src/media/appIcon/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/ic_menu.png -------------------------------------------------------------------------------- /src/media/appIcon/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/location.png -------------------------------------------------------------------------------- /src/media/appIcon/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/mail.png -------------------------------------------------------------------------------- /src/media/appIcon/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/map.png -------------------------------------------------------------------------------- /src/media/appIcon/maxi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/maxi.jpeg -------------------------------------------------------------------------------- /src/media/appIcon/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/message.png -------------------------------------------------------------------------------- /src/media/appIcon/midi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/midi.jpeg -------------------------------------------------------------------------------- /src/media/appIcon/mini.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/mini.jpeg -------------------------------------------------------------------------------- /src/media/appIcon/party.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/party.jpeg -------------------------------------------------------------------------------- /src/media/appIcon/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/phone.png -------------------------------------------------------------------------------- /src/media/appIcon/playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/playground.png -------------------------------------------------------------------------------- /src/media/appIcon/playground0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/playground0.png -------------------------------------------------------------------------------- /src/media/appIcon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/search.png -------------------------------------------------------------------------------- /src/media/appIcon/search0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/appIcon/search0.png -------------------------------------------------------------------------------- /src/media/temp/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/54.jpg -------------------------------------------------------------------------------- /src/media/temp/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/banner.jpg -------------------------------------------------------------------------------- /src/media/temp/fit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/fit.jpg -------------------------------------------------------------------------------- /src/media/temp/little.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/little.jpg -------------------------------------------------------------------------------- /src/media/temp/maxi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/maxi.jpg -------------------------------------------------------------------------------- /src/media/temp/midi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/midi.jpg -------------------------------------------------------------------------------- /src/media/temp/mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/mini.jpg -------------------------------------------------------------------------------- /src/media/temp/party.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/party.jpg -------------------------------------------------------------------------------- /src/media/temp/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/profile.png -------------------------------------------------------------------------------- /src/media/temp/sp1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/sp1.jpeg -------------------------------------------------------------------------------- /src/media/temp/sp2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/sp2.jpeg -------------------------------------------------------------------------------- /src/media/temp/sp3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/sp3.jpeg -------------------------------------------------------------------------------- /src/media/temp/sp4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/sp4.jpeg -------------------------------------------------------------------------------- /src/media/temp/sp5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/src/media/temp/sp5.jpeg -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanpho93/LiveCodeReactNative/HEAD/yarn.lock --------------------------------------------------------------------------------