├── .eslintignore ├── .gitignore ├── .metadata ├── README.md ├── amplify ├── .config │ └── project-config.json ├── README.md ├── backend │ ├── analytics │ │ └── amplifyrecipe │ │ │ ├── parameters.json │ │ │ └── pinpoint-cloudformation-template.json │ ├── api │ │ └── amplifyrecipe │ │ │ ├── cli-inputs.json │ │ │ ├── parameters.json │ │ │ ├── resolvers │ │ │ └── README.md │ │ │ ├── schema.graphql │ │ │ ├── stacks │ │ │ └── CustomResources.json │ │ │ └── transform.conf.json │ ├── auth │ │ └── amplifyrecipe86a8efe0 │ │ │ └── cli-inputs.json │ ├── backend-config.json │ ├── function │ │ └── amplifyrecipefb7252f0 │ │ │ ├── amplify.state │ │ │ ├── amplifyrecipefb7252f0-cloudformation-template.json │ │ │ ├── custom-policies.json │ │ │ ├── function-parameters.json │ │ │ └── src │ │ │ ├── event.json │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ ├── storage │ │ ├── Recipe3dqfxi2ts5g6lnj72cqbgk72dqdev │ │ │ └── parameters.json │ │ └── s3b350e034 │ │ │ └── cli-inputs.json │ ├── tags.json │ └── types │ │ └── amplify-dependent-resources-ref.d.ts ├── cli.json ├── hooks │ └── README.md └── team-provider-info.json ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── amplify_recipe │ │ │ │ └── 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 ├── icons │ ├── Add Friends.svg │ ├── Apple.svg │ ├── Arrow.svg │ ├── At.svg │ ├── Back.svg │ ├── Bookmark.svg │ ├── Calendar.svg │ ├── Camera.svg │ ├── Checklist.svg │ ├── Collaboration.svg │ ├── Comment.svg │ ├── Delete.svg │ ├── Eyes Close.svg │ ├── Eyes Open.svg │ ├── Faceboook.svg │ ├── Google.svg │ ├── Help.svg │ ├── Home.svg │ ├── Kebab.svg │ ├── Language.svg │ ├── Logout.svg │ ├── Moon.svg │ ├── Notification.svg │ ├── Outlined Bookmark.svg │ ├── Pencil.svg │ ├── Plus in Box.svg │ ├── Plus with container.svg │ ├── Plus.svg │ ├── Profile.svg │ ├── Remove.svg │ ├── Search.svg │ ├── Trash.svg │ └── clock.svg └── images │ └── onboard_image.png ├── binary └── macos │ ├── librealm_dart.dylib │ └── realm_version.txt ├── 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 │ ├── Runner.entitlements │ └── RunnerDebug.entitlements ├── lib ├── features │ ├── authentication │ │ ├── screens │ │ │ ├── forgot_password_screen.dart │ │ │ ├── onboarding_screen.dart │ │ │ ├── register_screen.dart │ │ │ ├── resend_email_screen.dart │ │ │ └── sign_in_screen.dart │ │ └── widgets │ │ │ ├── forgot_password_form.dart │ │ │ ├── onboard_content.dart │ │ │ ├── password_confirmation_form.dart │ │ │ ├── sign_in_form.dart │ │ │ ├── sign_up_form.dart │ │ │ ├── socal_login_buttons.dart │ │ │ ├── terms_and_policy.dart │ │ │ └── user_confirmation_form.dart │ ├── details │ │ ├── components │ │ │ ├── ingredient_tile.dart │ │ │ └── ingredients.dart │ │ └── screens │ │ │ └── recipe_details_screen.dart │ ├── entry_point.dart │ ├── favorite │ │ └── screens │ │ │ └── favorite_screen.dart │ ├── home │ │ ├── screens │ │ │ └── home_screen.dart │ │ └── widgets │ │ │ └── search_container.dart │ ├── notifications │ │ └── screens │ │ │ └── notifications_screen.dart │ ├── profile │ │ ├── components │ │ │ └── settings.dart │ │ └── screens │ │ │ ├── edit_profile_screen.dart │ │ │ └── profile_screen.dart │ └── recipes │ │ └── screens │ │ └── search │ │ ├── screen │ │ ├── add_recipe_screen.dart │ │ ├── all_recipes_screen.dart │ │ └── search_screen.dart │ │ └── widgets │ │ └── recent_search_tile.dart ├── main.dart ├── models │ ├── Category.dart │ ├── Duration.dart │ ├── ModelProvider.dart │ └── Recipe.dart ├── shared │ ├── constants │ │ ├── constants.dart │ │ └── gaps.dart │ ├── data │ │ ├── authentication_repository.dart │ │ ├── database │ │ │ └── isar_provider.dart │ │ ├── implementation │ │ │ ├── cognito_authentication_repository.dart │ │ │ ├── local_notification_repository.dart │ │ │ ├── local_remote_recipe_repository.dart │ │ │ ├── local_search_repository.dart │ │ │ └── s3_storage_repository.dart │ │ ├── model │ │ │ ├── notification.dart │ │ │ ├── notification.g.dart │ │ │ ├── recipe.dart │ │ │ ├── recipe.g.dart │ │ │ ├── search_item.dart │ │ │ ├── search_item.g.dart │ │ │ ├── user.dart │ │ │ └── user.g.dart │ │ ├── notification_repository.dart │ │ ├── recipe_repository.dart │ │ ├── search_repository.dart │ │ └── storage_repository.dart │ ├── navigation │ │ └── routes.dart │ ├── utils │ │ └── form_utils.dart │ └── widgets │ │ ├── async_image_loader.dart │ │ ├── frosted_glass_container.dart │ │ ├── recipe_card.dart │ │ └── section_list_tile.dart └── themes │ ├── app_colors.dart │ └── app_theme.dart ├── pubspec.lock └── pubspec.yaml /.eslintignore: -------------------------------------------------------------------------------- 1 | amplify-codegen-temp/models -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/README.md -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/README.md -------------------------------------------------------------------------------- /amplify/backend/analytics/amplifyrecipe/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/analytics/amplifyrecipe/parameters.json -------------------------------------------------------------------------------- /amplify/backend/analytics/amplifyrecipe/pinpoint-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/analytics/amplifyrecipe/pinpoint-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/api/amplifyrecipe/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/api/amplifyrecipe/cli-inputs.json -------------------------------------------------------------------------------- /amplify/backend/api/amplifyrecipe/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/api/amplifyrecipe/parameters.json -------------------------------------------------------------------------------- /amplify/backend/api/amplifyrecipe/resolvers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/api/amplifyrecipe/resolvers/README.md -------------------------------------------------------------------------------- /amplify/backend/api/amplifyrecipe/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/api/amplifyrecipe/schema.graphql -------------------------------------------------------------------------------- /amplify/backend/api/amplifyrecipe/stacks/CustomResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/api/amplifyrecipe/stacks/CustomResources.json -------------------------------------------------------------------------------- /amplify/backend/api/amplifyrecipe/transform.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/api/amplifyrecipe/transform.conf.json -------------------------------------------------------------------------------- /amplify/backend/auth/amplifyrecipe86a8efe0/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/auth/amplifyrecipe86a8efe0/cli-inputs.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/amplify.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/amplify.state -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/amplifyrecipefb7252f0-cloudformation-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/amplifyrecipefb7252f0-cloudformation-template.json -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/custom-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/custom-policies.json -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/function-parameters.json: -------------------------------------------------------------------------------- 1 | { 2 | "lambdaLayers": [] 3 | } -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/src/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/src/event.json -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/src/index.js -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/src/package-lock.json -------------------------------------------------------------------------------- /amplify/backend/function/amplifyrecipefb7252f0/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/function/amplifyrecipefb7252f0/src/package.json -------------------------------------------------------------------------------- /amplify/backend/storage/Recipe3dqfxi2ts5g6lnj72cqbgk72dqdev/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/storage/Recipe3dqfxi2ts5g6lnj72cqbgk72dqdev/parameters.json -------------------------------------------------------------------------------- /amplify/backend/storage/s3b350e034/cli-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/storage/s3b350e034/cli-inputs.json -------------------------------------------------------------------------------- /amplify/backend/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/tags.json -------------------------------------------------------------------------------- /amplify/backend/types/amplify-dependent-resources-ref.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/backend/types/amplify-dependent-resources-ref.d.ts -------------------------------------------------------------------------------- /amplify/cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/cli.json -------------------------------------------------------------------------------- /amplify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/hooks/README.md -------------------------------------------------------------------------------- /amplify/team-provider-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/amplify/team-provider-info.json -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/amplify_recipe/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/src/main/kotlin/com/example/amplify_recipe/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/icons/Add Friends.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Add Friends.svg -------------------------------------------------------------------------------- /assets/icons/Apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Apple.svg -------------------------------------------------------------------------------- /assets/icons/Arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Arrow.svg -------------------------------------------------------------------------------- /assets/icons/At.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/At.svg -------------------------------------------------------------------------------- /assets/icons/Back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Back.svg -------------------------------------------------------------------------------- /assets/icons/Bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Bookmark.svg -------------------------------------------------------------------------------- /assets/icons/Calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Calendar.svg -------------------------------------------------------------------------------- /assets/icons/Camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Camera.svg -------------------------------------------------------------------------------- /assets/icons/Checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Checklist.svg -------------------------------------------------------------------------------- /assets/icons/Collaboration.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Collaboration.svg -------------------------------------------------------------------------------- /assets/icons/Comment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Comment.svg -------------------------------------------------------------------------------- /assets/icons/Delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Delete.svg -------------------------------------------------------------------------------- /assets/icons/Eyes Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Eyes Close.svg -------------------------------------------------------------------------------- /assets/icons/Eyes Open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Eyes Open.svg -------------------------------------------------------------------------------- /assets/icons/Faceboook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Faceboook.svg -------------------------------------------------------------------------------- /assets/icons/Google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Google.svg -------------------------------------------------------------------------------- /assets/icons/Help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Help.svg -------------------------------------------------------------------------------- /assets/icons/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Home.svg -------------------------------------------------------------------------------- /assets/icons/Kebab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Kebab.svg -------------------------------------------------------------------------------- /assets/icons/Language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Language.svg -------------------------------------------------------------------------------- /assets/icons/Logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Logout.svg -------------------------------------------------------------------------------- /assets/icons/Moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Moon.svg -------------------------------------------------------------------------------- /assets/icons/Notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Notification.svg -------------------------------------------------------------------------------- /assets/icons/Outlined Bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Outlined Bookmark.svg -------------------------------------------------------------------------------- /assets/icons/Pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Pencil.svg -------------------------------------------------------------------------------- /assets/icons/Plus in Box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Plus in Box.svg -------------------------------------------------------------------------------- /assets/icons/Plus with container.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Plus with container.svg -------------------------------------------------------------------------------- /assets/icons/Plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Plus.svg -------------------------------------------------------------------------------- /assets/icons/Profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Profile.svg -------------------------------------------------------------------------------- /assets/icons/Remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Remove.svg -------------------------------------------------------------------------------- /assets/icons/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Search.svg -------------------------------------------------------------------------------- /assets/icons/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/Trash.svg -------------------------------------------------------------------------------- /assets/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/icons/clock.svg -------------------------------------------------------------------------------- /assets/images/onboard_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/assets/images/onboard_image.png -------------------------------------------------------------------------------- /binary/macos/librealm_dart.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/binary/macos/librealm_dart.dylib -------------------------------------------------------------------------------- /binary/macos/realm_version.txt: -------------------------------------------------------------------------------- 1 | 1.0.3 -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-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/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /ios/Runner/RunnerDebug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/ios/Runner/RunnerDebug.entitlements -------------------------------------------------------------------------------- /lib/features/authentication/screens/forgot_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/screens/forgot_password_screen.dart -------------------------------------------------------------------------------- /lib/features/authentication/screens/onboarding_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/screens/onboarding_screen.dart -------------------------------------------------------------------------------- /lib/features/authentication/screens/register_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/screens/register_screen.dart -------------------------------------------------------------------------------- /lib/features/authentication/screens/resend_email_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/screens/resend_email_screen.dart -------------------------------------------------------------------------------- /lib/features/authentication/screens/sign_in_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/screens/sign_in_screen.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/forgot_password_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/forgot_password_form.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/onboard_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/onboard_content.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/password_confirmation_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/password_confirmation_form.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/sign_in_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/sign_in_form.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/sign_up_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/sign_up_form.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/socal_login_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/socal_login_buttons.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/terms_and_policy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/terms_and_policy.dart -------------------------------------------------------------------------------- /lib/features/authentication/widgets/user_confirmation_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/authentication/widgets/user_confirmation_form.dart -------------------------------------------------------------------------------- /lib/features/details/components/ingredient_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/details/components/ingredient_tile.dart -------------------------------------------------------------------------------- /lib/features/details/components/ingredients.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/details/components/ingredients.dart -------------------------------------------------------------------------------- /lib/features/details/screens/recipe_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/details/screens/recipe_details_screen.dart -------------------------------------------------------------------------------- /lib/features/entry_point.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/entry_point.dart -------------------------------------------------------------------------------- /lib/features/favorite/screens/favorite_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/favorite/screens/favorite_screen.dart -------------------------------------------------------------------------------- /lib/features/home/screens/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/home/screens/home_screen.dart -------------------------------------------------------------------------------- /lib/features/home/widgets/search_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/home/widgets/search_container.dart -------------------------------------------------------------------------------- /lib/features/notifications/screens/notifications_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/notifications/screens/notifications_screen.dart -------------------------------------------------------------------------------- /lib/features/profile/components/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/profile/components/settings.dart -------------------------------------------------------------------------------- /lib/features/profile/screens/edit_profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/profile/screens/edit_profile_screen.dart -------------------------------------------------------------------------------- /lib/features/profile/screens/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/profile/screens/profile_screen.dart -------------------------------------------------------------------------------- /lib/features/recipes/screens/search/screen/add_recipe_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/recipes/screens/search/screen/add_recipe_screen.dart -------------------------------------------------------------------------------- /lib/features/recipes/screens/search/screen/all_recipes_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/recipes/screens/search/screen/all_recipes_screen.dart -------------------------------------------------------------------------------- /lib/features/recipes/screens/search/screen/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/recipes/screens/search/screen/search_screen.dart -------------------------------------------------------------------------------- /lib/features/recipes/screens/search/widgets/recent_search_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/features/recipes/screens/search/widgets/recent_search_tile.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/Category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/models/Category.dart -------------------------------------------------------------------------------- /lib/models/Duration.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/models/Duration.dart -------------------------------------------------------------------------------- /lib/models/ModelProvider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/models/ModelProvider.dart -------------------------------------------------------------------------------- /lib/models/Recipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/models/Recipe.dart -------------------------------------------------------------------------------- /lib/shared/constants/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/constants/constants.dart -------------------------------------------------------------------------------- /lib/shared/constants/gaps.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/constants/gaps.dart -------------------------------------------------------------------------------- /lib/shared/data/authentication_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/authentication_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/database/isar_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/database/isar_provider.dart -------------------------------------------------------------------------------- /lib/shared/data/implementation/cognito_authentication_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/implementation/cognito_authentication_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/implementation/local_notification_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/implementation/local_notification_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/implementation/local_remote_recipe_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/implementation/local_remote_recipe_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/implementation/local_search_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/implementation/local_search_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/implementation/s3_storage_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/implementation/s3_storage_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/model/notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/notification.dart -------------------------------------------------------------------------------- /lib/shared/data/model/notification.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/notification.g.dart -------------------------------------------------------------------------------- /lib/shared/data/model/recipe.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/recipe.dart -------------------------------------------------------------------------------- /lib/shared/data/model/recipe.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/recipe.g.dart -------------------------------------------------------------------------------- /lib/shared/data/model/search_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/search_item.dart -------------------------------------------------------------------------------- /lib/shared/data/model/search_item.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/search_item.g.dart -------------------------------------------------------------------------------- /lib/shared/data/model/user.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/user.dart -------------------------------------------------------------------------------- /lib/shared/data/model/user.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/model/user.g.dart -------------------------------------------------------------------------------- /lib/shared/data/notification_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/notification_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/recipe_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/recipe_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/search_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/search_repository.dart -------------------------------------------------------------------------------- /lib/shared/data/storage_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/data/storage_repository.dart -------------------------------------------------------------------------------- /lib/shared/navigation/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/navigation/routes.dart -------------------------------------------------------------------------------- /lib/shared/utils/form_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/utils/form_utils.dart -------------------------------------------------------------------------------- /lib/shared/widgets/async_image_loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/widgets/async_image_loader.dart -------------------------------------------------------------------------------- /lib/shared/widgets/frosted_glass_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/widgets/frosted_glass_container.dart -------------------------------------------------------------------------------- /lib/shared/widgets/recipe_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/widgets/recipe_card.dart -------------------------------------------------------------------------------- /lib/shared/widgets/section_list_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/shared/widgets/section_list_tile.dart -------------------------------------------------------------------------------- /lib/themes/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/themes/app_colors.dart -------------------------------------------------------------------------------- /lib/themes/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/lib/themes/app_theme.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abuanwar072/Flutter-Course-Amplify-Recipe-App/HEAD/pubspec.yaml --------------------------------------------------------------------------------