├── .gitignore ├── .metadata ├── README.md ├── android ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── flutter_ecommerce │ │ │ │ └── MainActivity.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 │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets └── images │ ├── adidas.png │ ├── bag-1.jpg │ ├── bag-2.jpg │ ├── bag-3.jpg │ ├── blur.jpg │ ├── ferrari.jpg │ ├── model-0.jpg │ ├── model-10.jpg │ ├── model-11.jpg │ ├── model-12.jpg │ ├── model-13.jpg │ ├── model-14.jpg │ ├── model-15.jpg │ ├── model-16.jpg │ ├── model-16a.jpg │ ├── model-17.jpg │ ├── model-17a.jpg │ ├── model-18.jpg │ ├── model-18a.jpg │ ├── model-19.jpg │ ├── model-19a.jpg │ ├── model-20.jpg │ ├── model-20a.jpg │ ├── model-4.jpg │ ├── model-6.jpg │ ├── model-7.jpg │ ├── model-8.jpg │ ├── model-9.jpg │ ├── nike.jpg │ ├── product-2.jpg │ ├── product-3.jpg │ ├── product-4.jpg │ ├── product-5.jpg │ ├── rayban.png │ └── timberland.png ├── ios ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── 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-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 │ └── main.m ├── lib ├── main.dart └── src │ ├── app.dart │ ├── content │ ├── explore │ │ ├── feed_content.dart │ │ └── trends_content.dart │ ├── product │ │ └── product_content.dart │ └── store │ │ ├── store_brand_content.dart │ │ └── store_home_content.dart │ ├── controllers │ ├── authors │ │ └── authors_controller.dart │ ├── brands │ │ └── brands_controller.dart │ ├── cart │ │ └── cart_controller.dart │ ├── posts_blogger │ │ └── posts_blogger_controller.dart │ ├── posts_brand │ │ └── posts_brand_controller.dart │ ├── products │ │ └── products_controller.dart │ ├── sales │ │ └── sales_controller.dart │ └── swipe │ │ ├── current_deck_card.dart │ │ ├── gesture_card.dart │ │ ├── gesture_card_deck.dart │ │ └── swipe_controller.dart │ ├── data │ ├── authors_data.dart │ ├── brands_data.dart │ ├── posts_blogger_data.dart │ ├── posts_brand_data.dart │ ├── products_data.dart │ ├── sales_data.dart │ └── swipe_data.dart │ ├── models │ ├── author_model.dart │ ├── brand_model.dart │ ├── cart_item_model.dart │ ├── post_blogger_model.dart │ ├── post_brand_model.dart │ ├── product_model.dart │ ├── sale_model.dart │ ├── slider_model.dart │ └── swipe_model.dart │ ├── screens │ ├── cart_screen.dart │ ├── end_screen.dart │ ├── explore_screen.dart │ ├── login_screen.dart │ ├── post_blogger_screen.dart │ ├── post_brand_screen.dart │ ├── product_screen.dart │ ├── register_screen.dart │ ├── start_screen.dart │ ├── store_brand_screen.dart │ ├── store_home_screen.dart │ ├── swipe_screen.dart │ ├── timeline_blogger_screen.dart │ └── timeline_brand_screen.dart │ └── widgets │ ├── components │ ├── app.dart │ ├── backgrounds.dart │ ├── cart.dart │ ├── feeds_list.dart │ ├── followers.dart │ ├── gallery.dart │ ├── post_blogger_card.dart │ ├── post_brand_card.dart │ ├── product.dart │ ├── product_card.dart │ ├── products_list.dart │ ├── search.dart │ ├── side_drawer.dart │ ├── slider_card.dart │ ├── slider_card_product.dart │ ├── slider_default_product.dart │ ├── swipe_card.dart │ ├── timeline_blogger_list.dart │ ├── timeline_brand_list.dart │ └── trends_list.dart │ └── elements │ ├── buttons.dart │ ├── common.dart │ ├── inputs.dart │ └── product.dart ├── pubspec.lock ├── pubspec.yaml ├── screenshots ├── 01.jpg ├── 02.jpg ├── 03.jpg ├── 04.jpg ├── 05.jpg ├── 06.jpg ├── 07.jpg ├── 08.jpg ├── 09.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg └── 14.jpg └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/example/flutter_ecommerce/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/main/java/com/example/flutter_ecommerce/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/images/adidas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/adidas.png -------------------------------------------------------------------------------- /assets/images/bag-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/bag-1.jpg -------------------------------------------------------------------------------- /assets/images/bag-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/bag-2.jpg -------------------------------------------------------------------------------- /assets/images/bag-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/bag-3.jpg -------------------------------------------------------------------------------- /assets/images/blur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/blur.jpg -------------------------------------------------------------------------------- /assets/images/ferrari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/ferrari.jpg -------------------------------------------------------------------------------- /assets/images/model-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-0.jpg -------------------------------------------------------------------------------- /assets/images/model-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-10.jpg -------------------------------------------------------------------------------- /assets/images/model-11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-11.jpg -------------------------------------------------------------------------------- /assets/images/model-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-12.jpg -------------------------------------------------------------------------------- /assets/images/model-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-13.jpg -------------------------------------------------------------------------------- /assets/images/model-14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-14.jpg -------------------------------------------------------------------------------- /assets/images/model-15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-15.jpg -------------------------------------------------------------------------------- /assets/images/model-16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-16.jpg -------------------------------------------------------------------------------- /assets/images/model-16a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-16a.jpg -------------------------------------------------------------------------------- /assets/images/model-17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-17.jpg -------------------------------------------------------------------------------- /assets/images/model-17a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-17a.jpg -------------------------------------------------------------------------------- /assets/images/model-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-18.jpg -------------------------------------------------------------------------------- /assets/images/model-18a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-18a.jpg -------------------------------------------------------------------------------- /assets/images/model-19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-19.jpg -------------------------------------------------------------------------------- /assets/images/model-19a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-19a.jpg -------------------------------------------------------------------------------- /assets/images/model-20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-20.jpg -------------------------------------------------------------------------------- /assets/images/model-20a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-20a.jpg -------------------------------------------------------------------------------- /assets/images/model-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-4.jpg -------------------------------------------------------------------------------- /assets/images/model-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-6.jpg -------------------------------------------------------------------------------- /assets/images/model-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-7.jpg -------------------------------------------------------------------------------- /assets/images/model-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-8.jpg -------------------------------------------------------------------------------- /assets/images/model-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/model-9.jpg -------------------------------------------------------------------------------- /assets/images/nike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/nike.jpg -------------------------------------------------------------------------------- /assets/images/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/product-2.jpg -------------------------------------------------------------------------------- /assets/images/product-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/product-3.jpg -------------------------------------------------------------------------------- /assets/images/product-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/product-4.jpg -------------------------------------------------------------------------------- /assets/images/product-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/product-5.jpg -------------------------------------------------------------------------------- /assets/images/rayban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/rayban.png -------------------------------------------------------------------------------- /assets/images/timberland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/assets/images/timberland.png -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/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/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/ios/Runner/main.m -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/src/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/app.dart -------------------------------------------------------------------------------- /lib/src/content/explore/feed_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/content/explore/feed_content.dart -------------------------------------------------------------------------------- /lib/src/content/explore/trends_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/content/explore/trends_content.dart -------------------------------------------------------------------------------- /lib/src/content/product/product_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/content/product/product_content.dart -------------------------------------------------------------------------------- /lib/src/content/store/store_brand_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/content/store/store_brand_content.dart -------------------------------------------------------------------------------- /lib/src/content/store/store_home_content.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/content/store/store_home_content.dart -------------------------------------------------------------------------------- /lib/src/controllers/authors/authors_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/authors/authors_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/brands/brands_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/brands/brands_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/cart/cart_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/cart/cart_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/posts_blogger/posts_blogger_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/posts_blogger/posts_blogger_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/posts_brand/posts_brand_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/posts_brand/posts_brand_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/products/products_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/products/products_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/sales/sales_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/sales/sales_controller.dart -------------------------------------------------------------------------------- /lib/src/controllers/swipe/current_deck_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/swipe/current_deck_card.dart -------------------------------------------------------------------------------- /lib/src/controllers/swipe/gesture_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/swipe/gesture_card.dart -------------------------------------------------------------------------------- /lib/src/controllers/swipe/gesture_card_deck.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/swipe/gesture_card_deck.dart -------------------------------------------------------------------------------- /lib/src/controllers/swipe/swipe_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/controllers/swipe/swipe_controller.dart -------------------------------------------------------------------------------- /lib/src/data/authors_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/authors_data.dart -------------------------------------------------------------------------------- /lib/src/data/brands_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/brands_data.dart -------------------------------------------------------------------------------- /lib/src/data/posts_blogger_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/posts_blogger_data.dart -------------------------------------------------------------------------------- /lib/src/data/posts_brand_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/posts_brand_data.dart -------------------------------------------------------------------------------- /lib/src/data/products_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/products_data.dart -------------------------------------------------------------------------------- /lib/src/data/sales_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/sales_data.dart -------------------------------------------------------------------------------- /lib/src/data/swipe_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/data/swipe_data.dart -------------------------------------------------------------------------------- /lib/src/models/author_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/author_model.dart -------------------------------------------------------------------------------- /lib/src/models/brand_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/brand_model.dart -------------------------------------------------------------------------------- /lib/src/models/cart_item_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/cart_item_model.dart -------------------------------------------------------------------------------- /lib/src/models/post_blogger_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/post_blogger_model.dart -------------------------------------------------------------------------------- /lib/src/models/post_brand_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/post_brand_model.dart -------------------------------------------------------------------------------- /lib/src/models/product_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/product_model.dart -------------------------------------------------------------------------------- /lib/src/models/sale_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/sale_model.dart -------------------------------------------------------------------------------- /lib/src/models/slider_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/slider_model.dart -------------------------------------------------------------------------------- /lib/src/models/swipe_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/models/swipe_model.dart -------------------------------------------------------------------------------- /lib/src/screens/cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/cart_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/end_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/end_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/explore_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/explore_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/post_blogger_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/post_blogger_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/post_brand_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/post_brand_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/product_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/product_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/register_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/register_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/start_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/start_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/store_brand_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/store_brand_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/store_home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/store_home_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/swipe_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/swipe_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/timeline_blogger_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/timeline_blogger_screen.dart -------------------------------------------------------------------------------- /lib/src/screens/timeline_brand_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/screens/timeline_brand_screen.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/app.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/backgrounds.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/backgrounds.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/cart.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/feeds_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/feeds_list.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/followers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/followers.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/gallery.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/post_blogger_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/post_blogger_card.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/post_brand_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/post_brand_card.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/product.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/product_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/product_card.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/products_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/products_list.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/search.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/search.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/side_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/side_drawer.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/slider_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/slider_card.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/slider_card_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/slider_card_product.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/slider_default_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/slider_default_product.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/swipe_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/swipe_card.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/timeline_blogger_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/timeline_blogger_list.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/timeline_brand_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/timeline_brand_list.dart -------------------------------------------------------------------------------- /lib/src/widgets/components/trends_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/components/trends_list.dart -------------------------------------------------------------------------------- /lib/src/widgets/elements/buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/elements/buttons.dart -------------------------------------------------------------------------------- /lib/src/widgets/elements/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/elements/common.dart -------------------------------------------------------------------------------- /lib/src/widgets/elements/inputs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/elements/inputs.dart -------------------------------------------------------------------------------- /lib/src/widgets/elements/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/lib/src/widgets/elements/product.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshots/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/01.jpg -------------------------------------------------------------------------------- /screenshots/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/02.jpg -------------------------------------------------------------------------------- /screenshots/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/03.jpg -------------------------------------------------------------------------------- /screenshots/04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/04.jpg -------------------------------------------------------------------------------- /screenshots/05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/05.jpg -------------------------------------------------------------------------------- /screenshots/06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/06.jpg -------------------------------------------------------------------------------- /screenshots/07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/07.jpg -------------------------------------------------------------------------------- /screenshots/08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/08.jpg -------------------------------------------------------------------------------- /screenshots/09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/09.jpg -------------------------------------------------------------------------------- /screenshots/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/10.jpg -------------------------------------------------------------------------------- /screenshots/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/11.jpg -------------------------------------------------------------------------------- /screenshots/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/12.jpg -------------------------------------------------------------------------------- /screenshots/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/13.jpg -------------------------------------------------------------------------------- /screenshots/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/screenshots/14.jpg -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuilhermeVendramini/flutter-ecommerce/HEAD/test/widget_test.dart --------------------------------------------------------------------------------