├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── recipe_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 │ ├── Inter-Black.ttf │ ├── Inter-Bold.ttf │ ├── Inter-ExtraBold.ttf │ ├── Inter-ExtraLight.ttf │ ├── Inter-Light.ttf │ ├── Inter-Medium.ttf │ ├── Inter-Regular.ttf │ ├── Inter-SemiBold.ttf │ └── Inter-Thin.ttf ├── icons │ ├── arrow-upward.svg │ ├── camera.svg │ ├── check-green.svg │ ├── check-grey.svg │ ├── drag-icon.svg │ ├── edit.svg │ ├── emoticon-party.svg │ ├── filter.svg │ ├── heart.svg │ ├── home.svg │ ├── image.svg │ ├── lock.svg │ ├── message.svg │ ├── notification.svg │ ├── profile.svg │ ├── scan.svg │ └── search.svg └── images │ ├── cake.jpg │ ├── emoticon-party.png │ ├── onboarding.png │ └── pancake.jpg ├── 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 ├── main.dart └── src │ ├── core │ ├── controllers │ │ ├── dashboard_controller.dart │ │ ├── helper_controller.dart │ │ ├── login_controller.dart │ │ ├── other_controller.dart │ │ ├── password_controller.dart │ │ ├── register_controller.dart │ │ ├── search_controller.dart │ │ ├── upload_controller.dart │ │ └── verify_controller.dart │ ├── functions │ │ └── network_image.dart │ └── models │ │ ├── helper_model.dart │ │ └── recipe_model.dart │ ├── routes │ └── routes.dart │ └── ui │ ├── screens │ ├── auth │ │ ├── change_password_screen.dart │ │ ├── login_screen.dart │ │ ├── password_recovery_screen.dart │ │ ├── register_screen.dart │ │ └── verify_screen.dart │ ├── demo.dart │ ├── intro │ │ └── onboarding_screen.dart │ ├── main │ │ ├── dashboard_screen.dart │ │ └── home_screen.dart │ ├── notification │ │ └── notification_screen.dart │ ├── recipe │ │ ├── detail_recipe_screen.dart │ │ └── popular_recipe_sceen.dart │ ├── search │ │ └── search_form_screen.dart │ ├── upload │ │ ├── step1_screen.dart │ │ └── step2_screen.dart │ └── user │ │ ├── profile_screen.dart │ │ └── user_recipe_screen.dart │ ├── utils │ ├── assets_util.dart │ ├── colors_util.dart │ ├── helper_util.dart │ ├── layout_util.dart │ └── typography_util.dart │ └── widgets │ ├── button_widget.dart │ ├── component_widget.dart │ ├── form_widget.dart │ ├── helper_widget.dart │ ├── notification_widget.dart │ └── recipe_widget.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshoot ├── dashboard.png ├── login.png ├── notification.png ├── profile.png └── recipe.png └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/recipe_app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/kotlin/com/example/recipe_app/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/fonts/Inter-Thin.ttf -------------------------------------------------------------------------------- /assets/icons/arrow-upward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/arrow-upward.svg -------------------------------------------------------------------------------- /assets/icons/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/camera.svg -------------------------------------------------------------------------------- /assets/icons/check-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/check-green.svg -------------------------------------------------------------------------------- /assets/icons/check-grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/check-grey.svg -------------------------------------------------------------------------------- /assets/icons/drag-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/drag-icon.svg -------------------------------------------------------------------------------- /assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/edit.svg -------------------------------------------------------------------------------- /assets/icons/emoticon-party.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/emoticon-party.svg -------------------------------------------------------------------------------- /assets/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/filter.svg -------------------------------------------------------------------------------- /assets/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/heart.svg -------------------------------------------------------------------------------- /assets/icons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/home.svg -------------------------------------------------------------------------------- /assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/image.svg -------------------------------------------------------------------------------- /assets/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/lock.svg -------------------------------------------------------------------------------- /assets/icons/message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/message.svg -------------------------------------------------------------------------------- /assets/icons/notification.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/notification.svg -------------------------------------------------------------------------------- /assets/icons/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/profile.svg -------------------------------------------------------------------------------- /assets/icons/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/scan.svg -------------------------------------------------------------------------------- /assets/icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/icons/search.svg -------------------------------------------------------------------------------- /assets/images/cake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/images/cake.jpg -------------------------------------------------------------------------------- /assets/images/emoticon-party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/images/emoticon-party.png -------------------------------------------------------------------------------- /assets/images/onboarding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/images/onboarding.png -------------------------------------------------------------------------------- /assets/images/pancake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/assets/images/pancake.jpg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/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/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/dashboard_controller.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /lib/src/core/controllers/helper_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/helper_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/login_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/other_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/other_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/password_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/password_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/register_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/register_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/search_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/search_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/upload_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/upload_controller.dart -------------------------------------------------------------------------------- /lib/src/core/controllers/verify_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/controllers/verify_controller.dart -------------------------------------------------------------------------------- /lib/src/core/functions/network_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/functions/network_image.dart -------------------------------------------------------------------------------- /lib/src/core/models/helper_model.dart: -------------------------------------------------------------------------------- 1 | export 'recipe_model.dart'; 2 | -------------------------------------------------------------------------------- /lib/src/core/models/recipe_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/core/models/recipe_model.dart -------------------------------------------------------------------------------- /lib/src/routes/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/routes/routes.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/auth/change_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/auth/change_password_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/auth/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/auth/login_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/auth/password_recovery_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/auth/password_recovery_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/auth/register_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/auth/register_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/auth/verify_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/auth/verify_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/demo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/demo.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/intro/onboarding_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/intro/onboarding_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/main/dashboard_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/main/dashboard_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/main/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/main/home_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/notification/notification_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/notification/notification_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/recipe/detail_recipe_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/recipe/detail_recipe_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/recipe/popular_recipe_sceen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/recipe/popular_recipe_sceen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/search/search_form_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/search/search_form_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/upload/step1_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/upload/step1_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/upload/step2_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/upload/step2_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/user/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/user/profile_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/screens/user/user_recipe_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/screens/user/user_recipe_screen.dart -------------------------------------------------------------------------------- /lib/src/ui/utils/assets_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/utils/assets_util.dart -------------------------------------------------------------------------------- /lib/src/ui/utils/colors_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/utils/colors_util.dart -------------------------------------------------------------------------------- /lib/src/ui/utils/helper_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/utils/helper_util.dart -------------------------------------------------------------------------------- /lib/src/ui/utils/layout_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/utils/layout_util.dart -------------------------------------------------------------------------------- /lib/src/ui/utils/typography_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/utils/typography_util.dart -------------------------------------------------------------------------------- /lib/src/ui/widgets/button_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/widgets/button_widget.dart -------------------------------------------------------------------------------- /lib/src/ui/widgets/component_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/widgets/component_widget.dart -------------------------------------------------------------------------------- /lib/src/ui/widgets/form_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/widgets/form_widget.dart -------------------------------------------------------------------------------- /lib/src/ui/widgets/helper_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/widgets/helper_widget.dart -------------------------------------------------------------------------------- /lib/src/ui/widgets/notification_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/widgets/notification_widget.dart -------------------------------------------------------------------------------- /lib/src/ui/widgets/recipe_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/lib/src/ui/widgets/recipe_widget.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshoot/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/screenshoot/dashboard.png -------------------------------------------------------------------------------- /screenshoot/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/screenshoot/login.png -------------------------------------------------------------------------------- /screenshoot/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/screenshoot/notification.png -------------------------------------------------------------------------------- /screenshoot/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/screenshoot/profile.png -------------------------------------------------------------------------------- /screenshoot/recipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/screenshoot/recipe.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agisrh/Flutter-Recipe-App-UI/HEAD/test/widget_test.dart --------------------------------------------------------------------------------