├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── Readme.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── designchallenge │ │ │ └── ReactNativeFlipper.java │ │ └── 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 │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── designchallenge │ │ │ ├── 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 ├── DesignChallenge-tvOS │ └── Info.plist ├── DesignChallenge-tvOSTests │ └── Info.plist ├── DesignChallenge.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── DesignChallenge-tvOS.xcscheme │ │ └── DesignChallenge.xcscheme ├── DesignChallenge.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── DesignChallenge │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m ├── DesignChallengeTests │ ├── DesignChallengeTests.m │ └── Info.plist ├── Podfile └── Podfile.lock ├── metro.config.js ├── package.json └── src ├── Appointments ├── assets │ ├── doc.gif │ ├── pass1.png │ ├── pass2.jpg │ ├── pass3.jpg │ └── pass4.jpg └── screens │ ├── Details.js │ └── Home.js ├── HouseBooking ├── assets │ ├── home1.jpg │ ├── home2.jpg │ ├── home3.jpg │ ├── home4.jpg │ ├── home5.jpg │ ├── house.png │ ├── housing.gif │ ├── passport.png │ ├── passport1.png │ └── passport2.jpg ├── components │ └── UI.js └── screens │ ├── Chat.js │ ├── Details.js │ ├── Favorites.js │ ├── Listings.js │ └── Profile.js ├── JobSearch ├── assets │ ├── air.png │ ├── airbnb.png │ ├── coding.png │ ├── design.png │ ├── facebook.png │ ├── google.png │ ├── jobsearch.gif │ ├── kfc.png │ ├── mcdonalds.png │ ├── notification.png │ ├── uber.png │ └── wallet.png ├── components │ └── UI.js └── screens │ ├── Add.js │ ├── CatListing.js │ ├── Favorites.js │ ├── HomePage.js │ ├── JobDetail.js │ ├── Profile.js │ └── Settings.js ├── Netflix ├── assets │ └── michael.jpg └── screens │ ├── ColumnLayoutDynamic.js │ ├── Details.js │ ├── Favorites.js │ ├── Home.js │ ├── Profile.js │ └── Search.js ├── Sneakers ├── assets │ ├── air1.png │ ├── air2.png │ ├── air3.png │ ├── air4.png │ ├── air5.png │ ├── cart.png │ ├── ecommerce.gif │ ├── final.png │ ├── green.png │ └── red.png ├── components │ ├── CartUI.js │ └── HomeUI.js └── screens │ ├── CartPage.js │ ├── DetailPage.js │ ├── Favorites.js │ ├── HomePage.js │ ├── PlaceOrder.js │ └── Profile.js ├── Streaming ├── assets │ ├── apex.jpg │ ├── apexhd.jpg │ ├── cod.jpg │ ├── fortnite.jpg │ ├── gaming.gif │ ├── home.jpg │ ├── ls1.jpg │ ├── ls2.jpg │ ├── overwatch.jpeg │ ├── passport.png │ └── stream.png └── screens │ ├── Details.js │ └── HomePage.js └── navigation ├── AppointmentNav.js ├── HouseBookingNavigator.js ├── JobNavigation.js ├── MainNavigator.js ├── NetflixNavigator.js └── StreamNavigator.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/App.js -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/Readme.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/designchallenge/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/debug/java/com/designchallenge/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/designchallenge/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/java/com/designchallenge/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/designchallenge/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/java/com/designchallenge/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/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/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/index.js -------------------------------------------------------------------------------- /ios/DesignChallenge-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/DesignChallenge-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/DesignChallenge.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/DesignChallenge.xcodeproj/xcshareddata/xcschemes/DesignChallenge-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge.xcodeproj/xcshareddata/xcschemes/DesignChallenge-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/DesignChallenge.xcodeproj/xcshareddata/xcschemes/DesignChallenge.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge.xcodeproj/xcshareddata/xcschemes/DesignChallenge.xcscheme -------------------------------------------------------------------------------- /ios/DesignChallenge.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/DesignChallenge.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/DesignChallenge/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/AppDelegate.h -------------------------------------------------------------------------------- /ios/DesignChallenge/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/AppDelegate.m -------------------------------------------------------------------------------- /ios/DesignChallenge/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/DesignChallenge/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/DesignChallenge/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/DesignChallenge/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/Info.plist -------------------------------------------------------------------------------- /ios/DesignChallenge/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallenge/main.m -------------------------------------------------------------------------------- /ios/DesignChallengeTests/DesignChallengeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallengeTests/DesignChallengeTests.m -------------------------------------------------------------------------------- /ios/DesignChallengeTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/DesignChallengeTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/package.json -------------------------------------------------------------------------------- /src/Appointments/assets/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/assets/doc.gif -------------------------------------------------------------------------------- /src/Appointments/assets/pass1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/assets/pass1.png -------------------------------------------------------------------------------- /src/Appointments/assets/pass2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/assets/pass2.jpg -------------------------------------------------------------------------------- /src/Appointments/assets/pass3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/assets/pass3.jpg -------------------------------------------------------------------------------- /src/Appointments/assets/pass4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/assets/pass4.jpg -------------------------------------------------------------------------------- /src/Appointments/screens/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/screens/Details.js -------------------------------------------------------------------------------- /src/Appointments/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Appointments/screens/Home.js -------------------------------------------------------------------------------- /src/HouseBooking/assets/home1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/home1.jpg -------------------------------------------------------------------------------- /src/HouseBooking/assets/home2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/home2.jpg -------------------------------------------------------------------------------- /src/HouseBooking/assets/home3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/home3.jpg -------------------------------------------------------------------------------- /src/HouseBooking/assets/home4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/home4.jpg -------------------------------------------------------------------------------- /src/HouseBooking/assets/home5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/home5.jpg -------------------------------------------------------------------------------- /src/HouseBooking/assets/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/house.png -------------------------------------------------------------------------------- /src/HouseBooking/assets/housing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/housing.gif -------------------------------------------------------------------------------- /src/HouseBooking/assets/passport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/passport.png -------------------------------------------------------------------------------- /src/HouseBooking/assets/passport1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/passport1.png -------------------------------------------------------------------------------- /src/HouseBooking/assets/passport2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/assets/passport2.jpg -------------------------------------------------------------------------------- /src/HouseBooking/components/UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/components/UI.js -------------------------------------------------------------------------------- /src/HouseBooking/screens/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/screens/Chat.js -------------------------------------------------------------------------------- /src/HouseBooking/screens/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/screens/Details.js -------------------------------------------------------------------------------- /src/HouseBooking/screens/Favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/screens/Favorites.js -------------------------------------------------------------------------------- /src/HouseBooking/screens/Listings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/screens/Listings.js -------------------------------------------------------------------------------- /src/HouseBooking/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/HouseBooking/screens/Profile.js -------------------------------------------------------------------------------- /src/JobSearch/assets/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/air.png -------------------------------------------------------------------------------- /src/JobSearch/assets/airbnb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/airbnb.png -------------------------------------------------------------------------------- /src/JobSearch/assets/coding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/coding.png -------------------------------------------------------------------------------- /src/JobSearch/assets/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/design.png -------------------------------------------------------------------------------- /src/JobSearch/assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/facebook.png -------------------------------------------------------------------------------- /src/JobSearch/assets/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/google.png -------------------------------------------------------------------------------- /src/JobSearch/assets/jobsearch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/jobsearch.gif -------------------------------------------------------------------------------- /src/JobSearch/assets/kfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/kfc.png -------------------------------------------------------------------------------- /src/JobSearch/assets/mcdonalds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/mcdonalds.png -------------------------------------------------------------------------------- /src/JobSearch/assets/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/notification.png -------------------------------------------------------------------------------- /src/JobSearch/assets/uber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/uber.png -------------------------------------------------------------------------------- /src/JobSearch/assets/wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/assets/wallet.png -------------------------------------------------------------------------------- /src/JobSearch/components/UI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/components/UI.js -------------------------------------------------------------------------------- /src/JobSearch/screens/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/Add.js -------------------------------------------------------------------------------- /src/JobSearch/screens/CatListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/CatListing.js -------------------------------------------------------------------------------- /src/JobSearch/screens/Favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/Favorites.js -------------------------------------------------------------------------------- /src/JobSearch/screens/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/HomePage.js -------------------------------------------------------------------------------- /src/JobSearch/screens/JobDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/JobDetail.js -------------------------------------------------------------------------------- /src/JobSearch/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/Profile.js -------------------------------------------------------------------------------- /src/JobSearch/screens/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/JobSearch/screens/Settings.js -------------------------------------------------------------------------------- /src/Netflix/assets/michael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/assets/michael.jpg -------------------------------------------------------------------------------- /src/Netflix/screens/ColumnLayoutDynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/screens/ColumnLayoutDynamic.js -------------------------------------------------------------------------------- /src/Netflix/screens/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/screens/Details.js -------------------------------------------------------------------------------- /src/Netflix/screens/Favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/screens/Favorites.js -------------------------------------------------------------------------------- /src/Netflix/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/screens/Home.js -------------------------------------------------------------------------------- /src/Netflix/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/screens/Profile.js -------------------------------------------------------------------------------- /src/Netflix/screens/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Netflix/screens/Search.js -------------------------------------------------------------------------------- /src/Sneakers/assets/air1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/air1.png -------------------------------------------------------------------------------- /src/Sneakers/assets/air2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/air2.png -------------------------------------------------------------------------------- /src/Sneakers/assets/air3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/air3.png -------------------------------------------------------------------------------- /src/Sneakers/assets/air4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/air4.png -------------------------------------------------------------------------------- /src/Sneakers/assets/air5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/air5.png -------------------------------------------------------------------------------- /src/Sneakers/assets/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/cart.png -------------------------------------------------------------------------------- /src/Sneakers/assets/ecommerce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/ecommerce.gif -------------------------------------------------------------------------------- /src/Sneakers/assets/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/final.png -------------------------------------------------------------------------------- /src/Sneakers/assets/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/green.png -------------------------------------------------------------------------------- /src/Sneakers/assets/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/assets/red.png -------------------------------------------------------------------------------- /src/Sneakers/components/CartUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/components/CartUI.js -------------------------------------------------------------------------------- /src/Sneakers/components/HomeUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/components/HomeUI.js -------------------------------------------------------------------------------- /src/Sneakers/screens/CartPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/screens/CartPage.js -------------------------------------------------------------------------------- /src/Sneakers/screens/DetailPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/screens/DetailPage.js -------------------------------------------------------------------------------- /src/Sneakers/screens/Favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/screens/Favorites.js -------------------------------------------------------------------------------- /src/Sneakers/screens/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/screens/HomePage.js -------------------------------------------------------------------------------- /src/Sneakers/screens/PlaceOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/screens/PlaceOrder.js -------------------------------------------------------------------------------- /src/Sneakers/screens/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Sneakers/screens/Profile.js -------------------------------------------------------------------------------- /src/Streaming/assets/apex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/apex.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/apexhd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/apexhd.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/cod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/cod.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/fortnite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/fortnite.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/gaming.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/gaming.gif -------------------------------------------------------------------------------- /src/Streaming/assets/home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/home.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/ls1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/ls1.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/ls2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/ls2.jpg -------------------------------------------------------------------------------- /src/Streaming/assets/overwatch.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/overwatch.jpeg -------------------------------------------------------------------------------- /src/Streaming/assets/passport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/passport.png -------------------------------------------------------------------------------- /src/Streaming/assets/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/assets/stream.png -------------------------------------------------------------------------------- /src/Streaming/screens/Details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/screens/Details.js -------------------------------------------------------------------------------- /src/Streaming/screens/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/Streaming/screens/HomePage.js -------------------------------------------------------------------------------- /src/navigation/AppointmentNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/navigation/AppointmentNav.js -------------------------------------------------------------------------------- /src/navigation/HouseBookingNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/navigation/HouseBookingNavigator.js -------------------------------------------------------------------------------- /src/navigation/JobNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/navigation/JobNavigation.js -------------------------------------------------------------------------------- /src/navigation/MainNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/navigation/MainNavigator.js -------------------------------------------------------------------------------- /src/navigation/NetflixNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/navigation/NetflixNavigator.js -------------------------------------------------------------------------------- /src/navigation/StreamNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cherucole/Daily-Design-Challenges/HEAD/src/navigation/StreamNavigator.js --------------------------------------------------------------------------------