├── .DS_Store ├── .dart_tool ├── package_config.json ├── package_config_subset └── version ├── .flutter-plugins ├── .flutter-plugins-dependencies ├── .gitattributes ├── .gitignore ├── .metadata ├── .packages ├── .vscode └── launch.json ├── README.md ├── analysis_options.yaml ├── android ├── .DS_Store ├── .gitignore ├── app │ ├── .DS_Store │ ├── build.gradle │ └── src │ │ ├── .DS_Store │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_challenge │ │ │ │ └── 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 ├── beer.png ├── cola.png ├── fish.png ├── fish_second.png ├── ketchup.png ├── manuel.png ├── mayonnaise.png ├── meal.png ├── pasta.png ├── paula.png ├── pedro.png ├── pepsi.png ├── spicy.png ├── stand.png ├── steak.png └── yoga.jpeg ├── 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 ├── lib ├── .DS_Store ├── core │ ├── .DS_Store │ ├── injections │ │ └── get_it.dart │ ├── navidator │ │ ├── navigator_animation.dart │ │ ├── navigator_cupertino.dart │ │ └── navigator_material.dart │ ├── presentation │ │ ├── animated_text_base.dart │ │ ├── icon_buttom.dart │ │ └── text_base.dart │ ├── services │ │ └── services.dart │ └── util │ │ └── format_data.dart ├── features │ ├── .DS_Store │ ├── awesome_app_bar │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── awesome_app_bar_bloc.dart │ │ │ ├── awesome_app_bar_event.dart │ │ │ └── awesome_app_bar_state.dart │ │ │ └── pages │ │ │ └── awesome_app_bar.dart │ ├── food_delivery │ │ ├── model │ │ │ ├── drink_model.dart │ │ │ ├── food_model.dart │ │ │ └── sauces_model.dart │ │ ├── pages │ │ │ ├── detail_food.dart │ │ │ └── food_delivery.dart │ │ └── widgets │ │ │ ├── circle.dart │ │ │ ├── custom_app_bar_food_delivery.dart │ │ │ └── image_hero.dart │ ├── home │ │ ├── data │ │ │ └── model │ │ │ │ └── home_item_model.dart │ │ └── presentation │ │ │ ├── view │ │ │ └── home_page.dart │ │ │ └── widgets │ │ │ └── item.dart │ ├── list_books │ │ ├── controller │ │ │ └── list_book_controller.dart │ │ ├── model │ │ │ ├── book_model.dart │ │ │ └── category_model.dart │ │ ├── pages │ │ │ ├── detail.dart │ │ │ └── list_books.dart │ │ └── widgets │ │ │ ├── category_item.dart │ │ │ ├── custom_appbar.dart │ │ │ ├── description_widget.dart │ │ │ └── item_detail_menu.dart │ └── sond_player │ │ ├── bloc │ │ ├── sond_play_bloc.dart │ │ ├── sond_play_event.dart │ │ └── sond_play_state.dart │ │ ├── model │ │ └── audio_model.dart │ │ ├── page │ │ └── player_screen.dart │ │ └── widgets │ │ ├── image_background.dart │ │ └── page_view_widget.dart ├── generated_plugin_registrant.dart └── main.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .DS_Store ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Runner │ ├── .DS_Store │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── app_icon_1024.png │ │ ├── app_icon_128.png │ │ ├── app_icon_16.png │ │ ├── app_icon_256.png │ │ ├── app_icon_32.png │ │ ├── app_icon_512.png │ │ └── app_icon_64.png │ ├── Base.lproj │ └── MainMenu.xib │ ├── Configs │ ├── AppInfo.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements ├── pubspec.lock ├── pubspec.yaml ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .DS_Store ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoritoTiago/flutter_challenge/58f58d16a565217d687db5faa9306c718aa47dbe/.DS_Store -------------------------------------------------------------------------------- /.dart_tool/version: -------------------------------------------------------------------------------- 1 | 3.0.5 -------------------------------------------------------------------------------- /.flutter-plugins: -------------------------------------------------------------------------------- 1 | # This is a generated file; do not edit or check into version control. 2 | audioplayers=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers-3.0.1/ 3 | audioplayers_android=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_android-2.0.0/ 4 | audioplayers_darwin=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_darwin-3.0.1/ 5 | audioplayers_linux=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_linux-1.0.4/ 6 | audioplayers_web=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_web-2.2.0/ 7 | audioplayers_windows=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_windows-1.1.3/ 8 | path_provider=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-2.0.12/ 9 | path_provider_android=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_android-2.0.22/ 10 | path_provider_foundation=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_foundation-2.1.1/ 11 | path_provider_linux=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.1.7/ 12 | path_provider_windows=/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.1.3/ 13 | -------------------------------------------------------------------------------- /.flutter-plugins-dependencies: -------------------------------------------------------------------------------- 1 | {"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"audioplayers_darwin","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_darwin-3.0.1/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_foundation-2.1.1/","native_build":true,"dependencies":[]}],"android":[{"name":"audioplayers_android","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_android-2.0.0/","native_build":true,"dependencies":[]},{"name":"path_provider_android","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_android-2.0.22/","native_build":true,"dependencies":[]}],"macos":[{"name":"audioplayers_darwin","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_darwin-3.0.1/","native_build":true,"dependencies":[]},{"name":"path_provider_foundation","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_foundation-2.1.1/","native_build":true,"dependencies":[]}],"linux":[{"name":"audioplayers_linux","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_linux-1.0.4/","native_build":true,"dependencies":[]},{"name":"path_provider_linux","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.1.7/","native_build":false,"dependencies":[]}],"windows":[{"name":"audioplayers_windows","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_windows-1.1.3/","native_build":true,"dependencies":[]},{"name":"path_provider_windows","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.1.3/","native_build":false,"dependencies":[]}],"web":[{"name":"audioplayers_web","path":"/Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_web-2.2.0/","dependencies":[]}]},"dependencyGraph":[{"name":"audioplayers","dependencies":["audioplayers_android","audioplayers_darwin","audioplayers_linux","audioplayers_web","audioplayers_windows","path_provider"]},{"name":"audioplayers_android","dependencies":[]},{"name":"audioplayers_darwin","dependencies":[]},{"name":"audioplayers_linux","dependencies":[]},{"name":"audioplayers_web","dependencies":[]},{"name":"audioplayers_windows","dependencies":[]},{"name":"path_provider","dependencies":["path_provider_android","path_provider_foundation","path_provider_linux","path_provider_windows"]},{"name":"path_provider_android","dependencies":[]},{"name":"path_provider_foundation","dependencies":[]},{"name":"path_provider_linux","dependencies":[]},{"name":"path_provider_windows","dependencies":[]}],"date_created":"2023-03-04 09:20:56.613632","version":"3.0.5"} -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # Web related 36 | lib/generated_plugin_registrant.dart 37 | 38 | # Symbolication related 39 | app.*.symbols 40 | 41 | # Obfuscation related 42 | app.*.map.json 43 | 44 | # Android Studio will place build artifacts here 45 | /android/app/debug 46 | /android/app/profile 47 | /android/app/release 48 | -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- 1 | # This file tracks properties of this Flutter project. 2 | # Used by Flutter tool to assess capabilities and perform upgrades etc. 3 | # 4 | # This file should be version controlled. 5 | 6 | version: 7 | revision: f1875d570e39de09040c8f79aa13cc56baab8db1 8 | channel: stable 9 | 10 | project_type: app 11 | 12 | # Tracks metadata for the flutter migrate command 13 | migration: 14 | platforms: 15 | - platform: root 16 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 17 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 18 | - platform: ios 19 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 20 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1 21 | 22 | # User provided section 23 | 24 | # List of Local paths (relative to this file) that should be 25 | # ignored by the migrate tool. 26 | # 27 | # Files that are not part of the templates will be ignored by default. 28 | unmanaged_files: 29 | - 'lib/main.dart' 30 | - 'ios/Runner.xcodeproj/project.pbxproj' 31 | -------------------------------------------------------------------------------- /.packages: -------------------------------------------------------------------------------- 1 | # This file is deprecated. Tools should instead consume 2 | # `.dart_tool/package_config.json`. 3 | # 4 | # For more info see: https://dart.dev/go/dot-packages-deprecation 5 | # 6 | # Generated by pub on 2023-02-20 16:40:35.434970. 7 | async:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.8.2/lib/ 8 | audioplayers:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers-3.0.1/lib/ 9 | audioplayers_android:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_android-2.0.0/lib/ 10 | audioplayers_darwin:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_darwin-3.0.1/lib/ 11 | audioplayers_linux:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_linux-1.0.4/lib/ 12 | audioplayers_platform_interface:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_platform_interface-4.0.0/lib/ 13 | audioplayers_web:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_web-2.2.0/lib/ 14 | audioplayers_windows:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/audioplayers_windows-1.1.3/lib/ 15 | bloc:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/bloc-8.1.1/lib/ 16 | boolean_selector:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0/lib/ 17 | characters:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.2.0/lib/ 18 | charcode:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.3.1/lib/ 19 | clock:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0/lib/ 20 | collection:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.16.0/lib/ 21 | crypto:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-3.0.2/lib/ 22 | cupertino_icons:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.5/lib/ 23 | equatable:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/equatable-2.0.5/lib/ 24 | fake_async:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.3.0/lib/ 25 | ffi:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/ffi-2.0.1/lib/ 26 | file:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/file-6.1.4/lib/ 27 | flutter:file:///Users/loritombuta/Development/flutter/packages/flutter/lib/ 28 | flutter_bloc:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_bloc-8.1.2/lib/ 29 | flutter_lints:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_lints-2.0.1/lib/ 30 | flutter_test:file:///Users/loritombuta/Development/flutter/packages/flutter_test/lib/ 31 | flutter_web_plugins:file:///Users/loritombuta/Development/flutter/packages/flutter_web_plugins/lib/ 32 | get_it:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/get_it-7.2.0/lib/ 33 | http:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/http-0.13.5/lib/ 34 | http_parser:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/http_parser-4.0.2/lib/ 35 | js:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/js-0.6.4/lib/ 36 | lints:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/lints-2.0.1/lib/ 37 | matcher:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.11/lib/ 38 | material_color_utilities:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/material_color_utilities-0.1.4/lib/ 39 | meta:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.7.0/lib/ 40 | nested:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/nested-1.0.0/lib/ 41 | path:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.1/lib/ 42 | path_provider:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-2.0.12/lib/ 43 | path_provider_android:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_android-2.0.22/lib/ 44 | path_provider_foundation:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_foundation-2.1.1/lib/ 45 | path_provider_linux:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-2.1.7/lib/ 46 | path_provider_platform_interface:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_platform_interface-2.0.5/lib/ 47 | path_provider_windows:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-2.1.3/lib/ 48 | platform:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.1.0/lib/ 49 | plugin_platform_interface:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/plugin_platform_interface-2.1.3/lib/ 50 | process:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/process-4.2.4/lib/ 51 | provider:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/provider-6.0.5/lib/ 52 | sky_engine:file:///Users/loritombuta/Development/flutter/bin/cache/pkg/sky_engine/lib/ 53 | source_span:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.2/lib/ 54 | stack_trace:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0/lib/ 55 | stream_channel:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0/lib/ 56 | string_scanner:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0/lib/ 57 | term_glyph:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0/lib/ 58 | test_api:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.4.9/lib/ 59 | typed_data:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.1/lib/ 60 | uuid:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/uuid-3.0.7/lib/ 61 | vector_math:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.2/lib/ 62 | win32:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/win32-3.1.3/lib/ 63 | xdg_directories:file:///Users/loritombuta/Development/flutter/.pub-cache/hosted/pub.dartlang.org/xdg_directories-0.2.0+3/lib/ 64 | flutter_challenge:lib/ 65 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "flutter_challenge", 9 | "request": "launch", 10 | "type": "dart", 11 | "args": [ 12 | "--no-sound-null-safety" 13 | ] 14 | }, 15 | { 16 | "name": "flutter_challenge (profile mode)", 17 | "request": "launch", 18 | "type": "dart", 19 | "flutterMode": "profile" 20 | }, 21 | { 22 | "name": "flutter_challenge (release mode)", 23 | "request": "launch", 24 | "type": "dart", 25 | "flutterMode": "release" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Flutter Challenge 3 | 4 | In this repository are or will be the codes of some challenges that I will do throughout my career as a flutter developer. 5 | 6 | Feel free to make a merge request 😉 7 | 8 | 9 | 10 | 11 | ## Authors 12 | 13 | - [@Lorito Tiago](https://www.linkedin.com/in/lorito-tiago-4439351b2/) 14 | 15 | 16 | 17 | ## Run to clone the repository 18 | 19 | 20 | 21 | ```bash 22 | git clone https://github.com/LoritoTiago/flutter_challenge.git 23 | ``` 24 | 25 | 26 | ## Projects 27 | 28 | 29 | - Sond Play 30 | - List Books 31 | - Food delivery 32 | 33 | ## Screenshots 34 | 35 | 36 | 37 | | | | 38 | | ------------- | ------------- | 39 | |