├── .flutter-plugins ├── .gitignore ├── LICENSE ├── README.md ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ ├── com │ │ │ └── example │ │ │ │ └── apptestoscar │ │ │ │ └── MainActivity.java │ │ └── io │ │ │ └── flutter │ │ │ └── plugins │ │ │ └── GeneratedPluginRegistrant.java │ │ └── res │ │ ├── drawable │ │ └── launch_background.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── art ├── iphone.png └── pixel.png ├── example_app_flutter.iml ├── ios ├── .gitignore ├── Flutter │ ├── App.framework │ │ └── App │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── flutter_assets │ │ ├── AssetManifest.json │ │ ├── FontManifest.json │ │ ├── LICENSE │ │ ├── fonts │ │ └── MaterialIcons-Regular.ttf │ │ └── snapshot_blob.bin ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ └── contents.xcworkspacedata └── Runner │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── 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 │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── GeneratedPluginRegistrant.h │ ├── GeneratedPluginRegistrant.m │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── main.m ├── lib ├── app │ ├── app.dart │ ├── data │ │ ├── recipe_data.dart │ │ ├── recipe_data_impl.dart │ │ └── recipe_data_mock.dart │ ├── injection │ │ └── injector.dart │ ├── login.dart │ ├── module │ │ └── recipe │ │ │ └── recipe_presenter.dart │ └── ui │ │ ├── bottom_navigation_view.dart │ │ ├── items.dart │ │ └── recipes_list_view.dart └── main.dart └── pubspec.yaml /.flutter-plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/.flutter-plugins -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/apptestoscar/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/app/src/main/java/com/example/apptestoscar/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /art/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/art/iphone.png -------------------------------------------------------------------------------- /art/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/art/pixel.png -------------------------------------------------------------------------------- /example_app_flutter.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/example_app_flutter.iml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/App.framework/App: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/App.framework/App -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/AssetManifest.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/FontManifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/flutter_assets/FontManifest.json -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/flutter_assets/LICENSE -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/flutter_assets/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /ios/Flutter/flutter_assets/snapshot_blob.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Flutter/flutter_assets/snapshot_blob.bin -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/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/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/GeneratedPluginRegistrant.h -------------------------------------------------------------------------------- /ios/Runner/GeneratedPluginRegistrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/GeneratedPluginRegistrant.m -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/app/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/app.dart -------------------------------------------------------------------------------- /lib/app/data/recipe_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/data/recipe_data.dart -------------------------------------------------------------------------------- /lib/app/data/recipe_data_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/data/recipe_data_impl.dart -------------------------------------------------------------------------------- /lib/app/data/recipe_data_mock.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/data/recipe_data_mock.dart -------------------------------------------------------------------------------- /lib/app/injection/injector.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/injection/injector.dart -------------------------------------------------------------------------------- /lib/app/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/login.dart -------------------------------------------------------------------------------- /lib/app/module/recipe/recipe_presenter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/module/recipe/recipe_presenter.dart -------------------------------------------------------------------------------- /lib/app/ui/bottom_navigation_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/ui/bottom_navigation_view.dart -------------------------------------------------------------------------------- /lib/app/ui/items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/ui/items.dart -------------------------------------------------------------------------------- /lib/app/ui/recipes_list_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/app/ui/recipes_list_view.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oscarcpozas/cooking-app-flutter/HEAD/pubspec.yaml --------------------------------------------------------------------------------