├── .gitignore ├── README.md ├── a_i_photo_app ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── my_project │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night-v31 │ │ │ │ └── styles.xml │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── audios │ │ └── favicon.png │ ├── fonts │ │ ├── Roboto-Medium.ttf │ │ └── favicon.png │ ├── images │ │ ├── 1_jZ9v-2QShwnfCwHlEZCmDw.png │ │ ├── avatar_for_social_app_realistic_female_98944746-c433-464d-8e6c-e44ee6b6c03e.webp │ │ ├── favicon.png │ │ └── unnamed.webp │ ├── lottie_animations │ │ └── favicon.png │ ├── pdfs │ │ └── favicon.png │ ├── rive_animations │ │ └── favicon.png │ └── videos │ │ └── favicon.png ├── firebase │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── functions │ │ ├── api_manager.js │ │ ├── index.js │ │ └── package.json │ └── storage.rules ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── ImageNotification │ │ ├── Info.plist │ │ └── NotificationService.swift │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ └── Runner.entitlements ├── lib │ ├── auth │ │ ├── auth_manager.dart │ │ ├── base_auth_user_provider.dart │ │ └── firebase_auth │ │ │ ├── anonymous_auth.dart │ │ │ ├── apple_auth.dart │ │ │ ├── auth_util.dart │ │ │ ├── email_auth.dart │ │ │ ├── firebase_auth_manager.dart │ │ │ ├── firebase_user_provider.dart │ │ │ ├── github_auth.dart │ │ │ ├── google_auth.dart │ │ │ └── jwt_token_auth.dart │ ├── backend │ │ ├── api_requests │ │ │ ├── api_calls.dart │ │ │ └── api_manager.dart │ │ ├── backend.dart │ │ ├── firebase │ │ │ └── firebase_config.dart │ │ ├── firebase_storage │ │ │ └── storage.dart │ │ └── schema │ │ │ ├── ai_images_record.dart │ │ │ ├── image_uploads_record.dart │ │ │ ├── index.dart │ │ │ ├── structs │ │ │ ├── analyze_response_struct.dart │ │ │ └── index.dart │ │ │ ├── users_record.dart │ │ │ └── util │ │ │ ├── firestore_util.dart │ │ │ └── schema_util.dart │ ├── custom_code │ │ └── widgets │ │ │ ├── custom_image_editor.dart │ │ │ └── index.dart │ ├── flutter_flow │ │ ├── flutter_flow_animations.dart │ │ ├── flutter_flow_button_tabbar.dart │ │ ├── flutter_flow_icon_button.dart │ │ ├── flutter_flow_model.dart │ │ ├── flutter_flow_theme.dart │ │ ├── flutter_flow_timer.dart │ │ ├── flutter_flow_util.dart │ │ ├── flutter_flow_widgets.dart │ │ ├── form_field_controller.dart │ │ ├── keep_alive_wrapper.dart │ │ ├── lat_lng.dart │ │ ├── nav │ │ │ ├── nav.dart │ │ │ └── serialization_util.dart │ │ ├── permissions_util.dart │ │ ├── place.dart │ │ ├── upload_data.dart │ │ └── uploaded_file.dart │ ├── index.dart │ ├── main.dart │ └── pages │ │ ├── auth │ │ └── get_started │ │ │ ├── get_started_model.dart │ │ │ └── get_started_widget.dart │ │ ├── create_a_i_photos │ │ ├── create_a_i_photos_model.dart │ │ └── create_a_i_photos_widget.dart │ │ ├── create_photo │ │ ├── create_photo_model.dart │ │ └── create_photo_widget.dart │ │ ├── edit_image │ │ ├── edit_image_model.dart │ │ └── edit_image_widget.dart │ │ ├── home │ │ ├── home_model.dart │ │ └── home_widget.dart │ │ ├── list12_budget_page │ │ ├── list12_budget_page_model.dart │ │ └── list12_budget_page_widget.dart │ │ └── wait │ │ ├── wait_model.dart │ │ └── wait_widget.dart ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ └── index.html ├── readmeimages ├── aiphoto.png ├── lewka.png └── sleep.png ├── sleep_app ├── README.md ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── my_project │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-night-v31 │ │ │ │ └── styles.xml │ │ │ │ ├── values-night │ │ │ │ └── styles.xml │ │ │ │ ├── values-v31 │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── assets │ ├── audios │ │ └── favicon.png │ ├── fonts │ │ ├── Roboto-Regular.ttf │ │ └── favicon.png │ ├── images │ │ └── favicon.png │ ├── lottie_animations │ │ └── favicon.png │ ├── pdfs │ │ └── favicon.png │ ├── rive_animations │ │ └── favicon.png │ └── videos │ │ └── favicon.png ├── firebase │ ├── firebase.json │ ├── firestore.indexes.json │ ├── firestore.rules │ ├── functions │ │ ├── api_manager.js │ │ ├── index.js │ │ └── package.json │ └── storage.rules ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── ImageNotification │ │ ├── Info.plist │ │ └── NotificationService.swift │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ └── Runner.entitlements ├── lib │ ├── app_state.dart │ ├── auth │ │ ├── auth_manager.dart │ │ ├── base_auth_user_provider.dart │ │ └── firebase_auth │ │ │ ├── anonymous_auth.dart │ │ │ ├── apple_auth.dart │ │ │ ├── auth_util.dart │ │ │ ├── email_auth.dart │ │ │ ├── firebase_auth_manager.dart │ │ │ ├── firebase_user_provider.dart │ │ │ ├── github_auth.dart │ │ │ ├── google_auth.dart │ │ │ └── jwt_token_auth.dart │ ├── backend │ │ ├── api_requests │ │ │ ├── api_calls.dart │ │ │ └── api_manager.dart │ │ ├── backend.dart │ │ ├── firebase │ │ │ └── firebase_config.dart │ │ └── schema │ │ │ ├── graph_data_record.dart │ │ │ ├── index.dart │ │ │ ├── sleep_scores_record.dart │ │ │ ├── structs │ │ │ ├── a_p_i_return_struct.dart │ │ │ ├── audio_files_struct.dart │ │ │ ├── index.dart │ │ │ └── sleep_graph_struct.dart │ │ │ ├── users_record.dart │ │ │ └── util │ │ │ ├── firestore_util.dart │ │ │ └── schema_util.dart │ ├── flutter_flow │ │ ├── flutter_flow_animations.dart │ │ ├── flutter_flow_audio_player.dart │ │ ├── flutter_flow_charts.dart │ │ ├── flutter_flow_checkbox_group.dart │ │ ├── flutter_flow_icon_button.dart │ │ ├── flutter_flow_model.dart │ │ ├── flutter_flow_theme.dart │ │ ├── flutter_flow_timer.dart │ │ ├── flutter_flow_util.dart │ │ ├── flutter_flow_widgets.dart │ │ ├── form_field_controller.dart │ │ ├── lat_lng.dart │ │ ├── nav │ │ │ ├── nav.dart │ │ │ └── serialization_util.dart │ │ ├── permissions_util.dart │ │ ├── place.dart │ │ └── uploaded_file.dart │ ├── index.dart │ ├── main.dart │ ├── pages │ │ ├── auth │ │ │ ├── logged_out_home │ │ │ │ ├── logged_out_home_model.dart │ │ │ │ └── logged_out_home_widget.dart │ │ │ ├── login │ │ │ │ ├── login_model.dart │ │ │ │ └── login_widget.dart │ │ │ └── sign_up │ │ │ │ ├── sign_up_model.dart │ │ │ │ └── sign_up_widget.dart │ │ ├── home │ │ │ ├── home_model.dart │ │ │ └── home_widget.dart │ │ ├── single_view │ │ │ ├── single_view_model.dart │ │ │ └── single_view_widget.dart │ │ ├── single_view_copy │ │ │ ├── single_view_copy_model.dart │ │ │ └── single_view_copy_widget.dart │ │ └── statepages │ │ │ ├── after_sleep_quiz1 │ │ │ ├── after_sleep_quiz1_model.dart │ │ │ └── after_sleep_quiz1_widget.dart │ │ │ ├── after_sleep_quiz2 │ │ │ ├── after_sleep_quiz2_model.dart │ │ │ └── after_sleep_quiz2_widget.dart │ │ │ └── after_sleep_quiz3 │ │ │ ├── after_sleep_quiz3_model.dart │ │ │ └── after_sleep_quiz3_widget.dart │ └── sleep_tracking │ │ ├── sleep_tracking_model.dart │ │ └── sleep_tracking_widget.dart ├── pubspec.yaml ├── test │ └── widget_test.dart └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ └── index.html └── yuka_clone ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── my_project │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-night-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── audios │ └── favicon.png ├── fonts │ ├── SF-Pro-Text-Bold.otf │ ├── SF-Pro-Text-Light.otf │ ├── SF-Pro-Text-Medium.otf │ ├── SF-Pro-Text-Regular.otf │ ├── SF-Pro-Text-Semibold.otf │ └── favicon.png ├── images │ ├── MealPlanner_Rounded.png │ ├── Screenshot_2024-02-15_193225.png │ ├── app_launcher_icon.png │ ├── eco-friendly-fabric.png │ ├── favicon.png │ ├── fork.png │ ├── lipid_(1).png │ ├── salt.png │ ├── sugar-cube_(1).png │ └── vegetables.png ├── lottie_animations │ └── favicon.png ├── pdfs │ └── favicon.png ├── rive_animations │ └── favicon.png └── videos │ └── favicon.png ├── firebase ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions │ ├── api_manager.js │ ├── index.js │ └── package.json └── storage.rules ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── ImageNotification │ ├── Info.plist │ └── NotificationService.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ ├── Runner-Bridging-Header.h │ └── Runner.entitlements ├── lib ├── auth │ ├── auth_manager.dart │ ├── base_auth_user_provider.dart │ └── firebase_auth │ │ ├── anonymous_auth.dart │ │ ├── apple_auth.dart │ │ ├── auth_util.dart │ │ ├── email_auth.dart │ │ ├── firebase_auth_manager.dart │ │ ├── firebase_user_provider.dart │ │ ├── github_auth.dart │ │ ├── google_auth.dart │ │ └── jwt_token_auth.dart ├── backend │ ├── api_requests │ │ ├── api_calls.dart │ │ └── api_manager.dart │ ├── backend.dart │ ├── firebase │ │ └── firebase_config.dart │ ├── firebase_analytics │ │ └── analytics.dart │ └── schema │ │ ├── index.dart │ │ ├── scans_record.dart │ │ ├── structs │ │ ├── food_component_struct.dart │ │ ├── index.dart │ │ └── scan_successful_result_struct.dart │ │ ├── users_record.dart │ │ └── util │ │ ├── firestore_util.dart │ │ └── schema_util.dart ├── components │ ├── accordion_model.dart │ ├── accordion_section │ │ ├── accordion_section_model.dart │ │ └── accordion_section_widget.dart │ ├── accordion_widget.dart │ ├── custom_appbar_model.dart │ ├── custom_appbar_widget.dart │ ├── diet_item │ │ ├── diet_item_model.dart │ │ └── diet_item_widget.dart │ ├── empty_state │ │ ├── empty_state_model.dart │ │ └── empty_state_widget.dart │ ├── food_component │ │ ├── food_component_model.dart │ │ └── food_component_widget.dart │ ├── loader_item │ │ ├── loader_item_model.dart │ │ └── loader_item_widget.dart │ ├── meal_card │ │ ├── meal_card_model.dart │ │ └── meal_card_widget.dart │ ├── meal_card_loading │ │ ├── meal_card_loading_model.dart │ │ └── meal_card_loading_widget.dart │ ├── preference_item │ │ ├── preference_item_model.dart │ │ └── preference_item_widget.dart │ └── title_with_subtitle │ │ ├── title_with_subtitle_model.dart │ │ └── title_with_subtitle_widget.dart ├── flutter_flow │ ├── custom_functions.dart │ ├── flutter_flow_animations.dart │ ├── flutter_flow_icon_button.dart │ ├── flutter_flow_model.dart │ ├── flutter_flow_theme.dart │ ├── flutter_flow_util.dart │ ├── flutter_flow_widgets.dart │ ├── form_field_controller.dart │ ├── internationalization.dart │ ├── lat_lng.dart │ ├── nav │ │ ├── nav.dart │ │ └── serialization_util.dart │ ├── place.dart │ ├── random_data_util.dart │ └── uploaded_file.dart ├── index.dart ├── main.dart ├── pages │ ├── meals │ │ ├── camera │ │ │ ├── camera_model.dart │ │ │ └── camera_widget.dart │ │ └── meal_details │ │ │ ├── meal_details_model.dart │ │ │ └── meal_details_widget.dart │ ├── onboarding │ │ ├── forgot_password │ │ │ ├── forgot_password_model.dart │ │ │ └── forgot_password_widget.dart │ │ ├── onboarding_create_account │ │ │ ├── onboarding_create_account_model.dart │ │ │ └── onboarding_create_account_widget.dart │ │ ├── onboarding_slideshow │ │ │ ├── onboarding_slideshow_model.dart │ │ │ └── onboarding_slideshow_widget.dart │ │ ├── sign_in │ │ │ ├── sign_in_model.dart │ │ │ └── sign_in_widget.dart │ │ └── splash │ │ │ ├── splash_model.dart │ │ │ └── splash_widget.dart │ └── profile │ │ └── dashboard │ │ ├── dashboard_model.dart │ │ └── dashboard_widget.dart └── scanning │ ├── scanning_model.dart │ └── scanning_widget.dart ├── pubspec.yaml ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png └── app_launcher_icon.png ├── index.html └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/README.md -------------------------------------------------------------------------------- /a_i_photo_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/README.md -------------------------------------------------------------------------------- /a_i_photo_app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/analysis_options.yaml -------------------------------------------------------------------------------- /a_i_photo_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/.gitignore -------------------------------------------------------------------------------- /a_i_photo_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/build.gradle -------------------------------------------------------------------------------- /a_i_photo_app/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/google-services.json -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/kotlin/com/example/my_project/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/kotlin/com/example/my_project/MainActivity.kt -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /a_i_photo_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/build.gradle -------------------------------------------------------------------------------- /a_i_photo_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/gradle.properties -------------------------------------------------------------------------------- /a_i_photo_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /a_i_photo_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/android/settings.gradle -------------------------------------------------------------------------------- /a_i_photo_app/assets/audios/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/audios/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /a_i_photo_app/assets/fonts/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/fonts/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/images/1_jZ9v-2QShwnfCwHlEZCmDw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/images/1_jZ9v-2QShwnfCwHlEZCmDw.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/images/avatar_for_social_app_realistic_female_98944746-c433-464d-8e6c-e44ee6b6c03e.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/images/avatar_for_social_app_realistic_female_98944746-c433-464d-8e6c-e44ee6b6c03e.webp -------------------------------------------------------------------------------- /a_i_photo_app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/images/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/images/unnamed.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/images/unnamed.webp -------------------------------------------------------------------------------- /a_i_photo_app/assets/lottie_animations/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/lottie_animations/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/pdfs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/pdfs/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/rive_animations/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/rive_animations/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/assets/videos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/assets/videos/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/firebase/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/firebase/firebase.json -------------------------------------------------------------------------------- /a_i_photo_app/firebase/firestore.indexes.json: -------------------------------------------------------------------------------- 1 | { 2 | "indexes": [] 3 | } -------------------------------------------------------------------------------- /a_i_photo_app/firebase/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/firebase/firestore.rules -------------------------------------------------------------------------------- /a_i_photo_app/firebase/functions/api_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/firebase/functions/api_manager.js -------------------------------------------------------------------------------- /a_i_photo_app/firebase/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/firebase/functions/index.js -------------------------------------------------------------------------------- /a_i_photo_app/firebase/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/firebase/functions/package.json -------------------------------------------------------------------------------- /a_i_photo_app/firebase/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/firebase/storage.rules -------------------------------------------------------------------------------- /a_i_photo_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/.gitignore -------------------------------------------------------------------------------- /a_i_photo_app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /a_i_photo_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /a_i_photo_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /a_i_photo_app/ios/ImageNotification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/ImageNotification/Info.plist -------------------------------------------------------------------------------- /a_i_photo_app/ios/ImageNotification/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/ImageNotification/NotificationService.swift -------------------------------------------------------------------------------- /a_i_photo_app/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Podfile -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /a_i_photo_app/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/auth_manager.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/base_auth_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/base_auth_user_provider.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/anonymous_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/anonymous_auth.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/apple_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/apple_auth.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/auth_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/auth_util.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/email_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/email_auth.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/firebase_auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/firebase_auth_manager.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/firebase_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/firebase_user_provider.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/github_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/github_auth.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/google_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/google_auth.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/auth/firebase_auth/jwt_token_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/auth/firebase_auth/jwt_token_auth.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/api_requests/api_calls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/api_requests/api_calls.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/api_requests/api_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/api_requests/api_manager.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/backend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/backend.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/firebase/firebase_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/firebase/firebase_config.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/firebase_storage/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/firebase_storage/storage.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/ai_images_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/ai_images_record.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/image_uploads_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/image_uploads_record.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/index.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/structs/analyze_response_struct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/structs/analyze_response_struct.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/structs/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/structs/index.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/users_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/users_record.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/util/firestore_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/util/firestore_util.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/backend/schema/util/schema_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/backend/schema/util/schema_util.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/custom_code/widgets/custom_image_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/custom_code/widgets/custom_image_editor.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/custom_code/widgets/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/custom_code/widgets/index.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_animations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_animations.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_button_tabbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_button_tabbar.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_icon_button.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_theme.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_timer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_timer.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_util.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/flutter_flow_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/flutter_flow_widgets.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/form_field_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/form_field_controller.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/keep_alive_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/keep_alive_wrapper.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/lat_lng.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/lat_lng.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/nav/nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/nav/nav.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/nav/serialization_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/nav/serialization_util.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/permissions_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/permissions_util.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/place.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/place.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/upload_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/upload_data.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/flutter_flow/uploaded_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/flutter_flow/uploaded_file.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/index.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/main.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/auth/get_started/get_started_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/auth/get_started/get_started_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/auth/get_started/get_started_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/auth/get_started/get_started_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/create_a_i_photos/create_a_i_photos_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/create_a_i_photos/create_a_i_photos_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/create_a_i_photos/create_a_i_photos_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/create_a_i_photos/create_a_i_photos_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/create_photo/create_photo_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/create_photo/create_photo_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/create_photo/create_photo_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/create_photo/create_photo_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/edit_image/edit_image_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/edit_image/edit_image_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/edit_image/edit_image_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/edit_image/edit_image_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/home/home_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/home/home_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/home/home_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/home/home_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/list12_budget_page/list12_budget_page_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/list12_budget_page/list12_budget_page_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/list12_budget_page/list12_budget_page_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/list12_budget_page/list12_budget_page_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/wait/wait_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/wait/wait_model.dart -------------------------------------------------------------------------------- /a_i_photo_app/lib/pages/wait/wait_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/lib/pages/wait/wait_widget.dart -------------------------------------------------------------------------------- /a_i_photo_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/pubspec.yaml -------------------------------------------------------------------------------- /a_i_photo_app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/test/widget_test.dart -------------------------------------------------------------------------------- /a_i_photo_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/web/favicon.png -------------------------------------------------------------------------------- /a_i_photo_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /a_i_photo_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /a_i_photo_app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/a_i_photo_app/web/index.html -------------------------------------------------------------------------------- /readmeimages/aiphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/readmeimages/aiphoto.png -------------------------------------------------------------------------------- /readmeimages/lewka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/readmeimages/lewka.png -------------------------------------------------------------------------------- /readmeimages/sleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/readmeimages/sleep.png -------------------------------------------------------------------------------- /sleep_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/README.md -------------------------------------------------------------------------------- /sleep_app/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/analysis_options.yaml -------------------------------------------------------------------------------- /sleep_app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/.gitignore -------------------------------------------------------------------------------- /sleep_app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/build.gradle -------------------------------------------------------------------------------- /sleep_app/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/google-services.json -------------------------------------------------------------------------------- /sleep_app/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/kotlin/com/example/my_project/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/kotlin/com/example/my_project/MainActivity.kt -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /sleep_app/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /sleep_app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/build.gradle -------------------------------------------------------------------------------- /sleep_app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/gradle.properties -------------------------------------------------------------------------------- /sleep_app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /sleep_app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/android/settings.gradle -------------------------------------------------------------------------------- /sleep_app/assets/audios/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/audios/favicon.png -------------------------------------------------------------------------------- /sleep_app/assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /sleep_app/assets/fonts/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/fonts/favicon.png -------------------------------------------------------------------------------- /sleep_app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/images/favicon.png -------------------------------------------------------------------------------- /sleep_app/assets/lottie_animations/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/lottie_animations/favicon.png -------------------------------------------------------------------------------- /sleep_app/assets/pdfs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/pdfs/favicon.png -------------------------------------------------------------------------------- /sleep_app/assets/rive_animations/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/rive_animations/favicon.png -------------------------------------------------------------------------------- /sleep_app/assets/videos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/assets/videos/favicon.png -------------------------------------------------------------------------------- /sleep_app/firebase/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/firebase/firebase.json -------------------------------------------------------------------------------- /sleep_app/firebase/firestore.indexes.json: -------------------------------------------------------------------------------- 1 | { 2 | "indexes": [] 3 | } -------------------------------------------------------------------------------- /sleep_app/firebase/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/firebase/firestore.rules -------------------------------------------------------------------------------- /sleep_app/firebase/functions/api_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/firebase/functions/api_manager.js -------------------------------------------------------------------------------- /sleep_app/firebase/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/firebase/functions/index.js -------------------------------------------------------------------------------- /sleep_app/firebase/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/firebase/functions/package.json -------------------------------------------------------------------------------- /sleep_app/firebase/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/firebase/storage.rules -------------------------------------------------------------------------------- /sleep_app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/.gitignore -------------------------------------------------------------------------------- /sleep_app/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /sleep_app/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /sleep_app/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /sleep_app/ios/ImageNotification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/ImageNotification/Info.plist -------------------------------------------------------------------------------- /sleep_app/ios/ImageNotification/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/ImageNotification/NotificationService.swift -------------------------------------------------------------------------------- /sleep_app/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Podfile -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sleep_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /sleep_app/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /sleep_app/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Info.plist -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /sleep_app/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /sleep_app/lib/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/app_state.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/auth_manager.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/base_auth_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/base_auth_user_provider.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/anonymous_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/anonymous_auth.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/apple_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/apple_auth.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/auth_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/auth_util.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/email_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/email_auth.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/firebase_auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/firebase_auth_manager.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/firebase_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/firebase_user_provider.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/github_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/github_auth.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/google_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/google_auth.dart -------------------------------------------------------------------------------- /sleep_app/lib/auth/firebase_auth/jwt_token_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/auth/firebase_auth/jwt_token_auth.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/api_requests/api_calls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/api_requests/api_calls.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/api_requests/api_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/api_requests/api_manager.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/backend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/backend.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/firebase/firebase_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/firebase/firebase_config.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/graph_data_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/graph_data_record.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/index.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/sleep_scores_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/sleep_scores_record.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/structs/a_p_i_return_struct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/structs/a_p_i_return_struct.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/structs/audio_files_struct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/structs/audio_files_struct.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/structs/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/structs/index.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/structs/sleep_graph_struct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/structs/sleep_graph_struct.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/users_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/users_record.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/util/firestore_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/util/firestore_util.dart -------------------------------------------------------------------------------- /sleep_app/lib/backend/schema/util/schema_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/backend/schema/util/schema_util.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_animations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_animations.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_audio_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_audio_player.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_charts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_charts.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_checkbox_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_checkbox_group.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_icon_button.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_theme.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_timer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_timer.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_util.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/flutter_flow_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/flutter_flow_widgets.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/form_field_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/form_field_controller.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/lat_lng.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/lat_lng.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/nav/nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/nav/nav.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/nav/serialization_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/nav/serialization_util.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/permissions_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/permissions_util.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/place.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/place.dart -------------------------------------------------------------------------------- /sleep_app/lib/flutter_flow/uploaded_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/flutter_flow/uploaded_file.dart -------------------------------------------------------------------------------- /sleep_app/lib/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/index.dart -------------------------------------------------------------------------------- /sleep_app/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/main.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/auth/logged_out_home/logged_out_home_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/auth/logged_out_home/logged_out_home_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/auth/logged_out_home/logged_out_home_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/auth/logged_out_home/logged_out_home_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/auth/login/login_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/auth/login/login_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/auth/login/login_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/auth/login/login_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/auth/sign_up/sign_up_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/auth/sign_up/sign_up_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/auth/sign_up/sign_up_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/auth/sign_up/sign_up_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/home/home_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/home/home_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/home/home_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/home/home_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/single_view/single_view_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/single_view/single_view_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/single_view/single_view_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/single_view/single_view_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/single_view_copy/single_view_copy_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/single_view_copy/single_view_copy_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/single_view_copy/single_view_copy_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/single_view_copy/single_view_copy_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/statepages/after_sleep_quiz1/after_sleep_quiz1_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/statepages/after_sleep_quiz1/after_sleep_quiz1_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/statepages/after_sleep_quiz1/after_sleep_quiz1_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/statepages/after_sleep_quiz1/after_sleep_quiz1_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/statepages/after_sleep_quiz2/after_sleep_quiz2_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/statepages/after_sleep_quiz2/after_sleep_quiz2_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/statepages/after_sleep_quiz2/after_sleep_quiz2_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/statepages/after_sleep_quiz2/after_sleep_quiz2_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/statepages/after_sleep_quiz3/after_sleep_quiz3_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/statepages/after_sleep_quiz3/after_sleep_quiz3_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/pages/statepages/after_sleep_quiz3/after_sleep_quiz3_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/pages/statepages/after_sleep_quiz3/after_sleep_quiz3_widget.dart -------------------------------------------------------------------------------- /sleep_app/lib/sleep_tracking/sleep_tracking_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/sleep_tracking/sleep_tracking_model.dart -------------------------------------------------------------------------------- /sleep_app/lib/sleep_tracking/sleep_tracking_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/lib/sleep_tracking/sleep_tracking_widget.dart -------------------------------------------------------------------------------- /sleep_app/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/pubspec.yaml -------------------------------------------------------------------------------- /sleep_app/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/test/widget_test.dart -------------------------------------------------------------------------------- /sleep_app/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/web/favicon.png -------------------------------------------------------------------------------- /sleep_app/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/web/icons/Icon-192.png -------------------------------------------------------------------------------- /sleep_app/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/web/icons/Icon-512.png -------------------------------------------------------------------------------- /sleep_app/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/sleep_app/web/index.html -------------------------------------------------------------------------------- /yuka_clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/README.md -------------------------------------------------------------------------------- /yuka_clone/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/analysis_options.yaml -------------------------------------------------------------------------------- /yuka_clone/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/.gitignore -------------------------------------------------------------------------------- /yuka_clone/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/build.gradle -------------------------------------------------------------------------------- /yuka_clone/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/google-services.json -------------------------------------------------------------------------------- /yuka_clone/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/kotlin/com/example/my_project/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/kotlin/com/example/my_project/MainActivity.kt -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /yuka_clone/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /yuka_clone/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/build.gradle -------------------------------------------------------------------------------- /yuka_clone/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/gradle.properties -------------------------------------------------------------------------------- /yuka_clone/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /yuka_clone/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/android/settings.gradle -------------------------------------------------------------------------------- /yuka_clone/assets/audios/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/audios/favicon.png -------------------------------------------------------------------------------- /yuka_clone/assets/fonts/SF-Pro-Text-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/fonts/SF-Pro-Text-Bold.otf -------------------------------------------------------------------------------- /yuka_clone/assets/fonts/SF-Pro-Text-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/fonts/SF-Pro-Text-Light.otf -------------------------------------------------------------------------------- /yuka_clone/assets/fonts/SF-Pro-Text-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/fonts/SF-Pro-Text-Medium.otf -------------------------------------------------------------------------------- /yuka_clone/assets/fonts/SF-Pro-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/fonts/SF-Pro-Text-Regular.otf -------------------------------------------------------------------------------- /yuka_clone/assets/fonts/SF-Pro-Text-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/fonts/SF-Pro-Text-Semibold.otf -------------------------------------------------------------------------------- /yuka_clone/assets/fonts/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/fonts/favicon.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/MealPlanner_Rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/MealPlanner_Rounded.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/Screenshot_2024-02-15_193225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/Screenshot_2024-02-15_193225.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/app_launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/app_launcher_icon.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/eco-friendly-fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/eco-friendly-fabric.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/favicon.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/fork.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/lipid_(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/lipid_(1).png -------------------------------------------------------------------------------- /yuka_clone/assets/images/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/salt.png -------------------------------------------------------------------------------- /yuka_clone/assets/images/sugar-cube_(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/sugar-cube_(1).png -------------------------------------------------------------------------------- /yuka_clone/assets/images/vegetables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/images/vegetables.png -------------------------------------------------------------------------------- /yuka_clone/assets/lottie_animations/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/lottie_animations/favicon.png -------------------------------------------------------------------------------- /yuka_clone/assets/pdfs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/pdfs/favicon.png -------------------------------------------------------------------------------- /yuka_clone/assets/rive_animations/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/rive_animations/favicon.png -------------------------------------------------------------------------------- /yuka_clone/assets/videos/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/assets/videos/favicon.png -------------------------------------------------------------------------------- /yuka_clone/firebase/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/firebase/firebase.json -------------------------------------------------------------------------------- /yuka_clone/firebase/firestore.indexes.json: -------------------------------------------------------------------------------- 1 | { 2 | "indexes": [] 3 | } -------------------------------------------------------------------------------- /yuka_clone/firebase/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/firebase/firestore.rules -------------------------------------------------------------------------------- /yuka_clone/firebase/functions/api_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/firebase/functions/api_manager.js -------------------------------------------------------------------------------- /yuka_clone/firebase/functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/firebase/functions/index.js -------------------------------------------------------------------------------- /yuka_clone/firebase/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/firebase/functions/package.json -------------------------------------------------------------------------------- /yuka_clone/firebase/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/firebase/storage.rules -------------------------------------------------------------------------------- /yuka_clone/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/.gitignore -------------------------------------------------------------------------------- /yuka_clone/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /yuka_clone/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /yuka_clone/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /yuka_clone/ios/ImageNotification/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/ImageNotification/Info.plist -------------------------------------------------------------------------------- /yuka_clone/ios/ImageNotification/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/ImageNotification/NotificationService.swift -------------------------------------------------------------------------------- /yuka_clone/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Podfile -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /yuka_clone/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Info.plist -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /yuka_clone/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /yuka_clone/lib/auth/auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/auth_manager.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/base_auth_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/base_auth_user_provider.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/anonymous_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/anonymous_auth.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/apple_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/apple_auth.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/auth_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/auth_util.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/email_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/email_auth.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/firebase_auth_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/firebase_auth_manager.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/firebase_user_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/firebase_user_provider.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/github_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/github_auth.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/google_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/google_auth.dart -------------------------------------------------------------------------------- /yuka_clone/lib/auth/firebase_auth/jwt_token_auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/auth/firebase_auth/jwt_token_auth.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/api_requests/api_calls.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/api_requests/api_calls.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/api_requests/api_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/api_requests/api_manager.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/backend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/backend.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/firebase/firebase_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/firebase/firebase_config.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/firebase_analytics/analytics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/firebase_analytics/analytics.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/index.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/scans_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/scans_record.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/structs/food_component_struct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/structs/food_component_struct.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/structs/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/structs/index.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/structs/scan_successful_result_struct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/structs/scan_successful_result_struct.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/users_record.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/users_record.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/util/firestore_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/util/firestore_util.dart -------------------------------------------------------------------------------- /yuka_clone/lib/backend/schema/util/schema_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/backend/schema/util/schema_util.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/accordion_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/accordion_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/accordion_section/accordion_section_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/accordion_section/accordion_section_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/accordion_section/accordion_section_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/accordion_section/accordion_section_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/accordion_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/accordion_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/custom_appbar_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/custom_appbar_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/custom_appbar_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/custom_appbar_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/diet_item/diet_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/diet_item/diet_item_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/diet_item/diet_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/diet_item/diet_item_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/empty_state/empty_state_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/empty_state/empty_state_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/empty_state/empty_state_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/empty_state/empty_state_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/food_component/food_component_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/food_component/food_component_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/food_component/food_component_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/food_component/food_component_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/loader_item/loader_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/loader_item/loader_item_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/loader_item/loader_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/loader_item/loader_item_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/meal_card/meal_card_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/meal_card/meal_card_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/meal_card/meal_card_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/meal_card/meal_card_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/meal_card_loading/meal_card_loading_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/meal_card_loading/meal_card_loading_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/meal_card_loading/meal_card_loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/meal_card_loading/meal_card_loading_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/preference_item/preference_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/preference_item/preference_item_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/preference_item/preference_item_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/preference_item/preference_item_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/title_with_subtitle/title_with_subtitle_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/title_with_subtitle/title_with_subtitle_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/components/title_with_subtitle/title_with_subtitle_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/components/title_with_subtitle/title_with_subtitle_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/custom_functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/custom_functions.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/flutter_flow_animations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/flutter_flow_animations.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/flutter_flow_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/flutter_flow_icon_button.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/flutter_flow_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/flutter_flow_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/flutter_flow_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/flutter_flow_theme.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/flutter_flow_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/flutter_flow_util.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/flutter_flow_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/flutter_flow_widgets.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/form_field_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/form_field_controller.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/internationalization.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/internationalization.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/lat_lng.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/lat_lng.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/nav/nav.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/nav/nav.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/nav/serialization_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/nav/serialization_util.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/place.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/place.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/random_data_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/random_data_util.dart -------------------------------------------------------------------------------- /yuka_clone/lib/flutter_flow/uploaded_file.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/flutter_flow/uploaded_file.dart -------------------------------------------------------------------------------- /yuka_clone/lib/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/index.dart -------------------------------------------------------------------------------- /yuka_clone/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/main.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/meals/camera/camera_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/meals/camera/camera_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/meals/camera/camera_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/meals/camera/camera_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/meals/meal_details/meal_details_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/meals/meal_details/meal_details_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/meals/meal_details/meal_details_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/meals/meal_details/meal_details_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/forgot_password/forgot_password_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/forgot_password/forgot_password_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/forgot_password/forgot_password_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/forgot_password/forgot_password_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/onboarding_create_account/onboarding_create_account_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/onboarding_create_account/onboarding_create_account_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/onboarding_create_account/onboarding_create_account_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/onboarding_create_account/onboarding_create_account_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/onboarding_slideshow/onboarding_slideshow_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/onboarding_slideshow/onboarding_slideshow_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/onboarding_slideshow/onboarding_slideshow_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/onboarding_slideshow/onboarding_slideshow_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/sign_in/sign_in_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/sign_in/sign_in_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/sign_in/sign_in_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/sign_in/sign_in_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/splash/splash_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/splash/splash_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/onboarding/splash/splash_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/onboarding/splash/splash_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/profile/dashboard/dashboard_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/profile/dashboard/dashboard_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/pages/profile/dashboard/dashboard_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/pages/profile/dashboard/dashboard_widget.dart -------------------------------------------------------------------------------- /yuka_clone/lib/scanning/scanning_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/scanning/scanning_model.dart -------------------------------------------------------------------------------- /yuka_clone/lib/scanning/scanning_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/lib/scanning/scanning_widget.dart -------------------------------------------------------------------------------- /yuka_clone/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/pubspec.yaml -------------------------------------------------------------------------------- /yuka_clone/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/test/widget_test.dart -------------------------------------------------------------------------------- /yuka_clone/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/web/favicon.png -------------------------------------------------------------------------------- /yuka_clone/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/web/icons/Icon-192.png -------------------------------------------------------------------------------- /yuka_clone/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/web/icons/Icon-512.png -------------------------------------------------------------------------------- /yuka_clone/web/icons/app_launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/web/icons/app_launcher_icon.png -------------------------------------------------------------------------------- /yuka_clone/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/web/index.html -------------------------------------------------------------------------------- /yuka_clone/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingWithLewis/RecreatedApps/HEAD/yuka_clone/web/manifest.json --------------------------------------------------------------------------------