├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── receipe_app │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── 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 │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ ├── Satoshi-Black.otf │ ├── Satoshi-Bold.otf │ ├── Satoshi-Light.otf │ ├── Satoshi-Medium.otf │ └── Satoshi-Regular.otf ├── lottie │ └── noDishFound.json ├── png │ ├── kally_dish_logo.png │ ├── logo.png │ ├── spag_image.png │ ├── spag_image_four.png │ ├── spag_logo_three.png │ ├── spag_logo_two.png │ └── splash_image.png ├── sql │ └── 1_recipe_app.sql └── svg │ ├── add.svg │ ├── blobOne.svg │ ├── blobTwo.svg │ ├── burger_logo_tab.svg │ ├── gift.svg │ ├── hamburger_icon.svg │ ├── heart.svg │ ├── heart_fil.svg │ ├── home.svg │ ├── logout.svg │ ├── moon.svg │ ├── onboard_image_one.svg │ ├── onboard_image_three.svg │ └── onboard_image_two.svg ├── flutter_jank_metrics_01.json ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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 │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── app │ ├── app.bottomsheets.dart │ ├── app.dart │ ├── app.dialogs.dart │ ├── app.locator.dart │ ├── app.logger.dart │ └── app.router.dart ├── data_model │ ├── create_dish_info.dart │ ├── credentials.dart │ ├── error_model.dart │ ├── event.dart │ ├── login_model.dart │ ├── login_response.dart │ ├── product_model.dart │ ├── recipe.dart │ ├── recipes_response.dart │ ├── register_model.dart │ ├── slider_data.dart │ └── user.dart ├── enums │ └── event_type.dart ├── exceptions │ └── receipe_exceptions.dart ├── generated │ ├── intl │ │ ├── messages_all.dart │ │ └── messages_en.dart │ └── l10n.dart ├── interceptors │ └── app_interceptors.dart ├── l10n │ └── intl_en.arb ├── main.dart ├── services │ ├── authentication_service.dart │ ├── database_service.dart │ ├── dio_service.dart │ ├── dish_service.dart │ ├── event_service.dart │ ├── secure_storage_service.dart │ └── user_service.dart └── ui │ ├── bottom_sheets │ └── notice │ │ ├── notice_sheet.dart │ │ └── notice_sheet_model.dart │ ├── common │ ├── app_colors.dart │ ├── app_images.dart │ ├── app_strings.dart │ ├── app_text_styles.dart │ ├── app_themes.dart │ └── ui_helpers.dart │ ├── dialogs │ ├── delete_dish │ │ ├── delete_dish_dialog.dart │ │ └── delete_dish_dialog_viewmodel.dart │ └── info_alert │ │ ├── info_alert_dialog.dart │ │ └── info_alert_dialog_model.dart │ ├── extension │ ├── app_typography.dart │ ├── build_context_extension.dart │ └── palette.dart │ ├── utilities │ ├── string_utils.dart │ └── validation.dart │ ├── views │ ├── dish_details │ │ ├── dish_details_view.dart │ │ ├── dish_details_viewmodel.dart │ │ └── widgets │ │ │ ├── dish_detail_bottom.dart │ │ │ ├── dish_image_header.dart │ │ │ ├── dish_title.dart │ │ │ └── ingredient_container.dart │ ├── edit_dish │ │ ├── edit_dish_view.dart │ │ ├── edit_dish_view.form.dart │ │ ├── edit_dish_viewmodel.dart │ │ └── widget │ │ │ └── ingredient_chip.dart │ ├── home │ │ ├── home_view.dart │ │ ├── home_viewmodel.dart │ │ └── widgets │ │ │ ├── favourite_widget.dart │ │ │ ├── liked_widget.dart │ │ │ ├── product_item.dart │ │ │ └── unliked_widget.dart │ ├── login │ │ ├── login_view.dart │ │ ├── login_view.form.dart │ │ └── login_viewmodel.dart │ ├── new_dish │ │ ├── new_dish_view.dart │ │ ├── new_dish_view.form.dart │ │ └── new_dish_viewmodel.dart │ ├── onboarding │ │ ├── onboarding_view.dart │ │ ├── onboarding_viewmodel.dart │ │ └── widgets │ │ │ ├── dot_widget.dart │ │ │ └── slider_content.dart │ ├── signup │ │ ├── signup_view.dart │ │ ├── signup_view.form.dart │ │ └── signup_viewmodel.dart │ ├── single_user │ │ ├── single_user_view.dart │ │ └── single_user_viewmodel.dart │ ├── splash │ │ ├── splash_view.dart │ │ ├── splash_viewmodel.dart │ │ └── widgets │ │ │ └── curved_clipper.dart │ └── startup │ │ ├── startup_view.dart │ │ └── startup_viewmodel.dart │ └── widgets │ └── common │ ├── app_drawer │ ├── app_drawer.dart │ └── app_drawer_model.dart │ ├── dish_image │ ├── dish_image.dart │ ├── dish_image_model.dart │ └── widgets │ │ └── no_dish_image.dart │ ├── overlay_loader │ ├── overlay_loader.dart │ └── overlay_loader_model.dart │ ├── primary_button │ ├── primary_button.dart │ └── primary_button_model.dart │ └── richtext_widget.dart ├── pubspec.lock ├── pubspec.yaml ├── stacked.json └── test ├── helpers ├── test_helpers.dart └── test_helpers.mocks.dart ├── services ├── authentication_service_test.dart ├── database_service_test.dart ├── dio_service_test.dart ├── dish_service_test.dart ├── event_service_test.dart ├── secure_storage_service_test.dart └── user_service_test.dart ├── viewmodels ├── home_viewmodel_test.dart ├── info_alert_dialog_model_test.dart ├── login_viewmodel_test.dart ├── new_dish_viewmodel_test.dart ├── notice_sheet_model_test.dart ├── onboarding_viewmodel_test.dart ├── signup_viewmodel_test.dart ├── single_user_viewmodel_test.dart ├── splash_viewmodel_test.dart └── user_flow_viewmodel_test.dart └── widget_models ├── app_drawer_model_test.dart ├── custom_appbar_model_test.dart ├── custom_input_field_model_test.dart ├── dish_image_model_test.dart ├── overlay_loader_model_test.dart ├── overylay_loader_model_test.dart └── primary_button_model_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/receipe_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/kotlin/com/example/receipe_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/fonts/Satoshi-Black.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/fonts/Satoshi-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/fonts/Satoshi-Light.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/fonts/Satoshi-Medium.otf -------------------------------------------------------------------------------- /assets/fonts/Satoshi-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/fonts/Satoshi-Regular.otf -------------------------------------------------------------------------------- /assets/lottie/noDishFound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/lottie/noDishFound.json -------------------------------------------------------------------------------- /assets/png/kally_dish_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/kally_dish_logo.png -------------------------------------------------------------------------------- /assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/logo.png -------------------------------------------------------------------------------- /assets/png/spag_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/spag_image.png -------------------------------------------------------------------------------- /assets/png/spag_image_four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/spag_image_four.png -------------------------------------------------------------------------------- /assets/png/spag_logo_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/spag_logo_three.png -------------------------------------------------------------------------------- /assets/png/spag_logo_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/spag_logo_two.png -------------------------------------------------------------------------------- /assets/png/splash_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/png/splash_image.png -------------------------------------------------------------------------------- /assets/sql/1_recipe_app.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/sql/1_recipe_app.sql -------------------------------------------------------------------------------- /assets/svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/add.svg -------------------------------------------------------------------------------- /assets/svg/blobOne.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/blobOne.svg -------------------------------------------------------------------------------- /assets/svg/blobTwo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/blobTwo.svg -------------------------------------------------------------------------------- /assets/svg/burger_logo_tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/burger_logo_tab.svg -------------------------------------------------------------------------------- /assets/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/gift.svg -------------------------------------------------------------------------------- /assets/svg/hamburger_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/hamburger_icon.svg -------------------------------------------------------------------------------- /assets/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/heart.svg -------------------------------------------------------------------------------- /assets/svg/heart_fil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/heart_fil.svg -------------------------------------------------------------------------------- /assets/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/home.svg -------------------------------------------------------------------------------- /assets/svg/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/logout.svg -------------------------------------------------------------------------------- /assets/svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/moon.svg -------------------------------------------------------------------------------- /assets/svg/onboard_image_one.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/onboard_image_one.svg -------------------------------------------------------------------------------- /assets/svg/onboard_image_three.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/onboard_image_three.svg -------------------------------------------------------------------------------- /assets/svg/onboard_image_two.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/assets/svg/onboard_image_two.svg -------------------------------------------------------------------------------- /flutter_jank_metrics_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/flutter_jank_metrics_01.json -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/app/app.bottomsheets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/app/app.bottomsheets.dart -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/app/app.dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/app/app.dialogs.dart -------------------------------------------------------------------------------- /lib/app/app.locator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/app/app.locator.dart -------------------------------------------------------------------------------- /lib/app/app.logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/app/app.logger.dart -------------------------------------------------------------------------------- /lib/app/app.router.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/app/app.router.dart -------------------------------------------------------------------------------- /lib/data_model/create_dish_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/create_dish_info.dart -------------------------------------------------------------------------------- /lib/data_model/credentials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/credentials.dart -------------------------------------------------------------------------------- /lib/data_model/error_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/error_model.dart -------------------------------------------------------------------------------- /lib/data_model/event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/event.dart -------------------------------------------------------------------------------- /lib/data_model/login_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/login_model.dart -------------------------------------------------------------------------------- /lib/data_model/login_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/login_response.dart -------------------------------------------------------------------------------- /lib/data_model/product_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/product_model.dart -------------------------------------------------------------------------------- /lib/data_model/recipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/recipe.dart -------------------------------------------------------------------------------- /lib/data_model/recipes_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/recipes_response.dart -------------------------------------------------------------------------------- /lib/data_model/register_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/register_model.dart -------------------------------------------------------------------------------- /lib/data_model/slider_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/slider_data.dart -------------------------------------------------------------------------------- /lib/data_model/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/data_model/user.dart -------------------------------------------------------------------------------- /lib/enums/event_type.dart: -------------------------------------------------------------------------------- 1 | enum EventType { transfer } 2 | -------------------------------------------------------------------------------- /lib/exceptions/receipe_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/exceptions/receipe_exceptions.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/generated/intl/messages_all.dart -------------------------------------------------------------------------------- /lib/generated/intl/messages_en.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/generated/intl/messages_en.dart -------------------------------------------------------------------------------- /lib/generated/l10n.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/generated/l10n.dart -------------------------------------------------------------------------------- /lib/interceptors/app_interceptors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/interceptors/app_interceptors.dart -------------------------------------------------------------------------------- /lib/l10n/intl_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/l10n/intl_en.arb -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/services/authentication_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/authentication_service.dart -------------------------------------------------------------------------------- /lib/services/database_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/database_service.dart -------------------------------------------------------------------------------- /lib/services/dio_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/dio_service.dart -------------------------------------------------------------------------------- /lib/services/dish_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/dish_service.dart -------------------------------------------------------------------------------- /lib/services/event_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/event_service.dart -------------------------------------------------------------------------------- /lib/services/secure_storage_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/secure_storage_service.dart -------------------------------------------------------------------------------- /lib/services/user_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/services/user_service.dart -------------------------------------------------------------------------------- /lib/ui/bottom_sheets/notice/notice_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/bottom_sheets/notice/notice_sheet.dart -------------------------------------------------------------------------------- /lib/ui/bottom_sheets/notice/notice_sheet_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/bottom_sheets/notice/notice_sheet_model.dart -------------------------------------------------------------------------------- /lib/ui/common/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/common/app_colors.dart -------------------------------------------------------------------------------- /lib/ui/common/app_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/common/app_images.dart -------------------------------------------------------------------------------- /lib/ui/common/app_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/common/app_strings.dart -------------------------------------------------------------------------------- /lib/ui/common/app_text_styles.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/common/app_text_styles.dart -------------------------------------------------------------------------------- /lib/ui/common/app_themes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/common/app_themes.dart -------------------------------------------------------------------------------- /lib/ui/common/ui_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/common/ui_helpers.dart -------------------------------------------------------------------------------- /lib/ui/dialogs/delete_dish/delete_dish_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/dialogs/delete_dish/delete_dish_dialog.dart -------------------------------------------------------------------------------- /lib/ui/dialogs/delete_dish/delete_dish_dialog_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/dialogs/delete_dish/delete_dish_dialog_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/dialogs/info_alert/info_alert_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/dialogs/info_alert/info_alert_dialog.dart -------------------------------------------------------------------------------- /lib/ui/dialogs/info_alert/info_alert_dialog_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/dialogs/info_alert/info_alert_dialog_model.dart -------------------------------------------------------------------------------- /lib/ui/extension/app_typography.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/extension/app_typography.dart -------------------------------------------------------------------------------- /lib/ui/extension/build_context_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/extension/build_context_extension.dart -------------------------------------------------------------------------------- /lib/ui/extension/palette.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/extension/palette.dart -------------------------------------------------------------------------------- /lib/ui/utilities/string_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/utilities/string_utils.dart -------------------------------------------------------------------------------- /lib/ui/utilities/validation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/utilities/validation.dart -------------------------------------------------------------------------------- /lib/ui/views/dish_details/dish_details_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/dish_details/dish_details_view.dart -------------------------------------------------------------------------------- /lib/ui/views/dish_details/dish_details_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/dish_details/dish_details_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/dish_details/widgets/dish_detail_bottom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/dish_details/widgets/dish_detail_bottom.dart -------------------------------------------------------------------------------- /lib/ui/views/dish_details/widgets/dish_image_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/dish_details/widgets/dish_image_header.dart -------------------------------------------------------------------------------- /lib/ui/views/dish_details/widgets/dish_title.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/dish_details/widgets/dish_title.dart -------------------------------------------------------------------------------- /lib/ui/views/dish_details/widgets/ingredient_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/dish_details/widgets/ingredient_container.dart -------------------------------------------------------------------------------- /lib/ui/views/edit_dish/edit_dish_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/edit_dish/edit_dish_view.dart -------------------------------------------------------------------------------- /lib/ui/views/edit_dish/edit_dish_view.form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/edit_dish/edit_dish_view.form.dart -------------------------------------------------------------------------------- /lib/ui/views/edit_dish/edit_dish_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/edit_dish/edit_dish_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/edit_dish/widget/ingredient_chip.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/edit_dish/widget/ingredient_chip.dart -------------------------------------------------------------------------------- /lib/ui/views/home/home_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/home/home_view.dart -------------------------------------------------------------------------------- /lib/ui/views/home/home_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/home/home_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/home/widgets/favourite_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/home/widgets/favourite_widget.dart -------------------------------------------------------------------------------- /lib/ui/views/home/widgets/liked_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/home/widgets/liked_widget.dart -------------------------------------------------------------------------------- /lib/ui/views/home/widgets/product_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/home/widgets/product_item.dart -------------------------------------------------------------------------------- /lib/ui/views/home/widgets/unliked_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/home/widgets/unliked_widget.dart -------------------------------------------------------------------------------- /lib/ui/views/login/login_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/login/login_view.dart -------------------------------------------------------------------------------- /lib/ui/views/login/login_view.form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/login/login_view.form.dart -------------------------------------------------------------------------------- /lib/ui/views/login/login_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/login/login_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/new_dish/new_dish_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/new_dish/new_dish_view.dart -------------------------------------------------------------------------------- /lib/ui/views/new_dish/new_dish_view.form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/new_dish/new_dish_view.form.dart -------------------------------------------------------------------------------- /lib/ui/views/new_dish/new_dish_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/new_dish/new_dish_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/onboarding/onboarding_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/onboarding/onboarding_view.dart -------------------------------------------------------------------------------- /lib/ui/views/onboarding/onboarding_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/onboarding/onboarding_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/onboarding/widgets/dot_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/onboarding/widgets/dot_widget.dart -------------------------------------------------------------------------------- /lib/ui/views/onboarding/widgets/slider_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/onboarding/widgets/slider_content.dart -------------------------------------------------------------------------------- /lib/ui/views/signup/signup_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/signup/signup_view.dart -------------------------------------------------------------------------------- /lib/ui/views/signup/signup_view.form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/signup/signup_view.form.dart -------------------------------------------------------------------------------- /lib/ui/views/signup/signup_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/signup/signup_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/single_user/single_user_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/single_user/single_user_view.dart -------------------------------------------------------------------------------- /lib/ui/views/single_user/single_user_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/single_user/single_user_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/splash/splash_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/splash/splash_view.dart -------------------------------------------------------------------------------- /lib/ui/views/splash/splash_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/splash/splash_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/views/splash/widgets/curved_clipper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/splash/widgets/curved_clipper.dart -------------------------------------------------------------------------------- /lib/ui/views/startup/startup_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/startup/startup_view.dart -------------------------------------------------------------------------------- /lib/ui/views/startup/startup_viewmodel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/views/startup/startup_viewmodel.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/app_drawer/app_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/app_drawer/app_drawer.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/app_drawer/app_drawer_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/app_drawer/app_drawer_model.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/dish_image/dish_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/dish_image/dish_image.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/dish_image/dish_image_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/dish_image/dish_image_model.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/dish_image/widgets/no_dish_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/dish_image/widgets/no_dish_image.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/overlay_loader/overlay_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/overlay_loader/overlay_loader.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/overlay_loader/overlay_loader_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/overlay_loader/overlay_loader_model.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/primary_button/primary_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/primary_button/primary_button.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/primary_button/primary_button_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/primary_button/primary_button_model.dart -------------------------------------------------------------------------------- /lib/ui/widgets/common/richtext_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/lib/ui/widgets/common/richtext_widget.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /stacked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/stacked.json -------------------------------------------------------------------------------- /test/helpers/test_helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/helpers/test_helpers.dart -------------------------------------------------------------------------------- /test/helpers/test_helpers.mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/helpers/test_helpers.mocks.dart -------------------------------------------------------------------------------- /test/services/authentication_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/authentication_service_test.dart -------------------------------------------------------------------------------- /test/services/database_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/database_service_test.dart -------------------------------------------------------------------------------- /test/services/dio_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/dio_service_test.dart -------------------------------------------------------------------------------- /test/services/dish_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/dish_service_test.dart -------------------------------------------------------------------------------- /test/services/event_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/event_service_test.dart -------------------------------------------------------------------------------- /test/services/secure_storage_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/secure_storage_service_test.dart -------------------------------------------------------------------------------- /test/services/user_service_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/services/user_service_test.dart -------------------------------------------------------------------------------- /test/viewmodels/home_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/home_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/info_alert_dialog_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/info_alert_dialog_model_test.dart -------------------------------------------------------------------------------- /test/viewmodels/login_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/login_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/new_dish_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/new_dish_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/notice_sheet_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/notice_sheet_model_test.dart -------------------------------------------------------------------------------- /test/viewmodels/onboarding_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/onboarding_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/signup_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/signup_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/single_user_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/single_user_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/splash_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/splash_viewmodel_test.dart -------------------------------------------------------------------------------- /test/viewmodels/user_flow_viewmodel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/viewmodels/user_flow_viewmodel_test.dart -------------------------------------------------------------------------------- /test/widget_models/app_drawer_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/app_drawer_model_test.dart -------------------------------------------------------------------------------- /test/widget_models/custom_appbar_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/custom_appbar_model_test.dart -------------------------------------------------------------------------------- /test/widget_models/custom_input_field_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/custom_input_field_model_test.dart -------------------------------------------------------------------------------- /test/widget_models/dish_image_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/dish_image_model_test.dart -------------------------------------------------------------------------------- /test/widget_models/overlay_loader_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/overlay_loader_model_test.dart -------------------------------------------------------------------------------- /test/widget_models/overylay_loader_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/overylay_loader_model_test.dart -------------------------------------------------------------------------------- /test/widget_models/primary_button_model_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moak13/recipe_app/HEAD/test/widget_models/primary_button_model_test.dart --------------------------------------------------------------------------------