Giter VIP home page Giter VIP logo

openflutterecommerceapp's Introduction

Open E-commerce App

Open Flutter Project E-commerce App is mobile application for e-commerce. We are building a commercially valuable product as an open-source project to make mobile technology accessible for small and medium businesses.

The code Improvement Challenge

Open Flutter Project: The Code Improvement Challenge

The idea behind the competition is to improve your Flutter development skills within a set period in a group of other enthusiasts. The challenge will last for a week when everyone can propose a code improvement for the app we build and submit it with a pull request.

Improvements:

  1. Widgets. We have quite a few widgets to developed already that can be improved. The is an Easter Egg right in the article with a widget description. What you can do is optimize current widgets and their usage.

  2. Bloc improvements. Things connected to events, states and Bloc can be revised as well. Read more on that in Flutter Bloc.

  3. Flutter clean architecture implementation and improvements. You can do in this part updates for data or domain part of the app. You can find more info about Flutter’s clean architecture here.

...any other propositions on code or architecture improvements.

Getting Started

E-commerce Mobile Application build in Flutter.

How to contribute to E-commerce App

Mobile App UI/UX

Use-cases description

E-commerce App Roadmap

A short guide how to start contributing to Open Flutter Project

E-commerce Widget Library Description

7 reasons for a developers to contribute to open-source projects

Functionality description and discussion

Product Categories in E-commerce App

Product list and hashtags in E-commerce App

Product filters in E-commerce App

Product details in E-commerce App

Product Reviews in E-commerce App

Product Cart and Checkout in E-commerce App

Product details in E-commerce App

User Profile in E-commerce App

E-commerce App Mobile App Local Database Structure

Tests

To run tests use command below:

flutter run -t test/tests.dart

Linter

To check the code quality with Flutter Analyzer (recommended when you want to add something) please run in console:

flutter analyze

It should give no errors message:

Analyzing openflutterecommerceapp...
No issues found! (ran in 3.5s)

IDE settings

You need to update the configuration of your IDE to tell the location of the entry point.

The example for VS Code is below:

 "configurations": [
    {
        "name": "Flutter",
        "request": "launch",
        "program": "lib/main.dart",
        "type": "dart"
    }
]

openflutterecommerceapp's People

Contributors

4seer avatar andrewappsdev avatar ghackg11 avatar himanshu64 avatar iamprashant12 avatar jml90 avatar kumarvaratha avatar oliverboamah avatar pr-1 avatar ptyagicodecamp avatar sayurusandaru avatar stevenmontero avatar taras-git avatar umair13adil avatar vladislavkovaliov avatar yahhi avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

openflutterecommerceapp's Issues

UI when tablets or phones are in horizontal position

When the devices are in horizontal position the UI on the main page seems to be strange. It is required to lock rotation when the app is active or to create a more appropriate layout for a horizontal view.
image

9. My Orders Screens

9.1. My orders use-case: User click “My Orders” on the Profile Screen. User is redirect to list of user orders from local database. An API call is made to the server to check for new orders. Top tab clicks (Delivered, Processing, Cancelled) shows according list of orders.

9.2. My order details user-case: User click “Details” button in the order tile on My Orders Screen. User is redirected to Order Details Screen. An API request is made the server to check updates for that order.

9.3. Reorder user-case: User clicks “Reorder” button on the My Order Details Screen. All products with parameters are added to the cart. Previous products already added to the cart stay there too. User is redirected to Product Cart Screen.

9.4. Leave feedback use-case: User clicks “Leave Feedback” button on My Order Details Screen. A popup with an input and a text area to enter feedback appears. User enters title and text for the feedback and clicks add. The feedback is sent to the server. User is redirected back to the My Order Details Screen.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

13. My Reviews Screen

13.1. Reviews list use-case: User clicks “My Reviews” in the profile and sees list of reviews from local database. The remote API is called to pull other reviews of current user. They are added at the bottom once loaded.

13.2. Remove my review use-case: User clicks “Remove” button in the list of “My Reviews” in the profile. The confirmation popup appears. If the removal is confirmed then the review is removed from local database and remote API call to remove it from the server is called.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

10. Shipping Address Screen

10.1. Shipping address in the profile use-case: User clicks “Shipping addresses” on My Profile Screen List of shipping addresses is displayed. If there are no shipping addresses available then user is redirected to the Add New Shipping Address Form Screen.

10.2. Add new shipping address in the profile use-case: User clicks “+” button on the shipping address list screen in the list of shipping addresses. The Add Shipping Address Form appears. User fills in the form, fields are validated to be at least 3 chars long. User clicks “Save Address”. The shipping address is added to local database. User is redirected to back to list of shipping addresses.

10.3. Change default shipping address in the profile use-case: User clicks “Use as shipping address” checkbox in the list of shipping addresses in the checkout. The new shipping address is set for the order. User stays on the same screen.

10.4. Edit shipping address in the profile use-case: User clicks “Edit” link in the shipping address tile in the list of shipping addresses. User is redirected to form to edit details on shipping address. The fields are validated to be at least 3 chars long. User edits fields, clicks save, shipping address is updated in local database. User is redirected back to list of shipping addresses in the profile.

10.5. Remove shipping address in the profile use-case: User clicks “Remove” button in the list of shipping addresses in the profile. The shipping address is marked as removed from the database and according API call is made to the server. User is redirected to Add New Shipping Address Form if there is no shipping addresses left.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

7. Product Favorites Screen

7.1. Favorite product listing use-case: User clicks favorite icon at the bottom menu. The list of favorite products is displayed from local database. User clicks on tile view and tile view is displayed with all the latest price updates.

7.2. Favorite product filter use-case: User selects filters and clicks “Apply” button. Products in the favorite list are filtered according to selected filters. User selected filters and clicks “Discard”. Nothing changes.

7.3. Favorite product sort user-case: User clicks sort by. The popup with sort by options appears. User clicks variant of sorting (current variant can be selected). Products in the favorite list are sort according to selected value.

7.4. Remove product from favorites use-case: User clicks delete icon in the top right corner of the favorite product tile. The product is removed from local database and the list.

7.5. Add favorite product to cart: User clicks “Add to cart” icon in the list of favorite products. The product with size and color is added to cart (local database) and user is redirected to product cart screen.

7.6. Hashtag filter use-case: Use clicks on one of the hashtag buttons at the top and sees list of products filtered by that tag.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

Flutter Analyze

Getting the following errors when running flutter analyze:

Environment:

Flutter 1.17.0 • channel beta • https://github.com/flutter/flutter.git
Framework • revision d3ed9ec945 (11 days ago) • 2020-04-06 14:07:34 -0700
Engine • revision c9506cb8e9
Tools • Dart 2.8.0 (build 2.8.0-dev.18.0 eea9717938)

Issue:

flutter analyze
! pedantic 1.9.0                                                        
Running "flutter pub get" in openflutterecommerceapp...             0.6s
Analyzing openflutterecommerceapp...                                    

   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:67:11 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:67:37 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. • lib/config/theme.dart:72:11 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. • lib/config/theme.dart:72:34 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/config/theme.dart:79:11 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/config/theme.dart:79:37 • deprecated_member_use
   info • 'display2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline3. This feature was deprecated after v1.13.8. • lib/config/theme.dart:85:11 • deprecated_member_use
   info • 'display2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline3. This feature was deprecated after v1.13.8. • lib/config/theme.dart:85:37 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:88:11 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:88:37 • deprecated_member_use
   info • 'display4' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:93:11 • deprecated_member_use
   info • 'display4' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:93:37 • deprecated_member_use
   info • 'subtitle' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is subtitle2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:96:11 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:96:37 • deprecated_member_use
   info • 'subhead' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is subtitle1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:101:11 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:101:36 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:119:11 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:119:34 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:125:11 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:125:34 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/features/cart/views/cart_view.dart:58:41 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/list_view.dart:37:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/tile_view.dart:50:39 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/tile_view.dart:72:53 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/tile_view.dart:75:53 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/add_shipping_address_view.dart:69:45 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/cart_view.dart:40:45 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/cart_view.dart:64:53 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/payment_method_view.dart:66:45 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/shipping_address_view.dart:39:45 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/shipping_address_view.dart:83:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/success1_view.dart:44:49 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/success2_view.dart:44:45 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main1_view.dart:52:51 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main2_view.dart:51:47 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:45:47 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:58:47 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:74:44 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:89:43 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:62:45 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:257:40 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:261:40 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:269:42 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_reviews/product_review_and_rating_screen.dart:77:42 • deprecated_member_use
   info • 'subtitle' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is subtitle2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_reviews/product_review_and_rating_screen.dart:210:50 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_reviews/product_review_and_rating_screen.dart:283:46 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/features/products/views/brands.dart:31:41 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/products/views/card_view.dart:38:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/features/products/views/filters.dart:31:41
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/products/views/list_view.dart:39:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:44:55 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:49:55 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:56:55 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:70:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:75:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:79:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:92:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:99:59 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:195:37 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:202:39 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/features/profile/views/orders.dart:79:70 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/features/profile/views/orders.dart:80:60 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/box_value_select.dart:96:33 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:73:65 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:146:70 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:183:69 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:185:69 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:196:61 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/category_list_element.dart:31:37 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/category_tile.dart:38:69 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:42:49 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:48:49 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:53:49 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:68:51 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:76:53 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:91:55 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:99:57 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:108:55
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:117:57
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:145:49
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:149:49
          • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:76:69 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:77:63
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/product_card.dart:112:37 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/product_card.dart:122:41 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:160:42 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:171:44 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:189:48 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:194:37 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:202:47 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:207:37 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:50:53 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:53:53 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:67:49 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:71:49 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:80:45 •
          deprecated_member_use
   info • 'display2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline3. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/rating_summary.dart:54:46 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/action_card.dart:43:53
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/action_card.dart:52:59
          • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/block_header.dart:48:70 •
          deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/block_header.dart:57:45 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/block_subtitle.dart:37:51 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/block_subtitle.dart:49:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/bottom_popup.dart:43:57
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/clickable_line.dart:39:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/custom_checkbox.dart:45:45 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/delivery_method.dart:58:43 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/input_button.dart:43:43
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/label_right_checkbox.dart:40:45 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/payment_card.dart:27:43
          • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/payment_card_preview.dart:51:47 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/payment_card_preview.dart:62:47 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/payment_card_preview.dart:75:47 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/price_slider.dart:45:51
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/price_slider.dart:51:51
          • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/product_filter.dart:53:68 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/product_filter.dart:64:49 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/product_rating.dart:146:16 •
          deprecated_member_use
   info • 'subtitle' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is subtitle2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/product_review_item.dart:109:44 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/product_review_item.dart:145:44 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/search_bar.dart:41:45 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/summary_line.dart:22:60
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/summary_line.dart:27:45
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/text_tile.dart:29:59 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/text_tile.dart:30:62 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:131:65 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:132:59 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:139:59 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:142:65 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:179:43 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:225:37 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:235:41 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:245:48 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:251:35 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:260:47 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:265:37 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:310:42 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:321:46 •
          deprecated_member_use

138 issues found. (ran in 33.5s)
(base) priyankas-mbp:openflutterecommerceapp ptyagi$ flutter channel beta
Switching to flutter channel 'beta'...
git: Switched to branch 'beta'
git: Your branch is up to date with 'origin/beta'.
Successfully switched to flutter channel 'beta'.
To ensure that you're on the latest build from this channel, run 'flutter upgrade'
(base) priyankas-mbp:openflutterecommerceapp ptyagi$ flutter upgrade
Downloading Dart SDK from Flutter engine c9506cb8e93e5e8879152ff5c948b175abb5b997...
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  212M  100  212M    0     0  7259k      0  0:00:29  0:00:29 --:--:-- 7318k
Building flutter tool...
Upgrading Flutter from /Users/ptyagi/fluttersdk/flutter...
Already up to date.
Flutter is already up to date on channel beta
Flutter 1.17.0 • channel beta • https://github.com/flutter/flutter.git
Framework • revision d3ed9ec945 (11 days ago) • 2020-04-06 14:07:34 -0700
Engine • revision c9506cb8e9
Tools • Dart 2.8.0 (build 2.8.0-dev.18.0 eea9717938)
(base) priyankas-mbp:openflutterecommerceapp ptyagi$ flutter analyze
Downloading package sky_engine...                                   0.4s
Downloading flutter_patched_sdk tools...                            1.6s
Downloading flutter_patched_sdk_product tools...                    1.9s
Downloading darwin-x64 tools...                                     4.8s
Downloading darwin-x64/font-subset tools...                         0.7s
! pedantic 1.9.0                                                        
Running "flutter pub get" in openflutterecommerceapp...             1.4s
Analyzing openflutterecommerceapp...                                    

   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:67:11 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:67:37 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. • lib/config/theme.dart:72:11 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. • lib/config/theme.dart:72:34 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/config/theme.dart:79:11 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/config/theme.dart:79:37 • deprecated_member_use
   info • 'display2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline3. This feature was deprecated after v1.13.8. • lib/config/theme.dart:85:11 • deprecated_member_use
   info • 'display2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline3. This feature was deprecated after v1.13.8. • lib/config/theme.dart:85:37 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:88:11 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:88:37 • deprecated_member_use
   info • 'display4' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:93:11 • deprecated_member_use
   info • 'display4' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:93:37 • deprecated_member_use
   info • 'subtitle' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is subtitle2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:96:11 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:96:37 • deprecated_member_use
   info • 'subhead' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is subtitle1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:101:11 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/config/theme.dart:101:36 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:119:11 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/config/theme.dart:119:34 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:125:11 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/config/theme.dart:125:34 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/features/cart/views/cart_view.dart:58:41 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/list_view.dart:37:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/tile_view.dart:50:39 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/tile_view.dart:72:53 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/categories/views/tile_view.dart:75:53 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/add_shipping_address_view.dart:69:45 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/cart_view.dart:40:45 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/cart_view.dart:64:53 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/payment_method_view.dart:66:45 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/shipping_address_view.dart:39:45 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/shipping_address_view.dart:83:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/success1_view.dart:44:49 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/checkout/views/success2_view.dart:44:45 • deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main1_view.dart:52:51 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main2_view.dart:51:47 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:45:47 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:58:47 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:74:44 •
          deprecated_member_use
   info • 'headline' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline5. This feature was deprecated after v1.13.8. • lib/presentation/features/home/views/main3_view.dart:89:43 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:62:45 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:257:40 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:261:40 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_details/views/details.dart:269:42 • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_reviews/product_review_and_rating_screen.dart:77:42 • deprecated_member_use
   info • 'subtitle' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is subtitle2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_reviews/product_review_and_rating_screen.dart:210:50 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/product_reviews/product_review_and_rating_screen.dart:283:46 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/features/products/views/brands.dart:31:41 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/products/views/card_view.dart:38:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/features/products/views/filters.dart:31:41
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/products/views/list_view.dart:39:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:44:55 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:49:55 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:56:55 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:70:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:75:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:79:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:92:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:99:59 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:195:37 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/features/profile/views/order_details.dart:202:39 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/features/profile/views/orders.dart:79:70 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/features/profile/views/orders.dart:80:60 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/box_value_select.dart:96:33 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:73:65 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:146:70 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:183:69 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:185:69 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/cart_tile.dart:196:61 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/category_list_element.dart:31:37 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/category_tile.dart:38:69 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:42:49 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:48:49 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:53:49 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:68:51 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:76:53 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:91:55 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:99:57 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:108:55
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:117:57
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:145:49
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/order_tile.dart:149:49
          • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:76:69 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:77:63
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/product_card.dart:112:37 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/product_card.dart:122:41 • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:160:42 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:171:44 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:189:48 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:194:37 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:202:47 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/product_card.dart:207:37 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:50:53 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:53:53 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:67:49 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:71:49 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/data_driven/promo_tile.dart:80:45 •
          deprecated_member_use
   info • 'display2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline3. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/data_driven/rating_summary.dart:54:46 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/action_card.dart:43:53
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/action_card.dart:52:59
          • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/block_header.dart:48:70 •
          deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/block_header.dart:57:45 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/block_subtitle.dart:37:51 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/block_subtitle.dart:49:57 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/bottom_popup.dart:43:57
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/clickable_line.dart:39:41 • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/custom_checkbox.dart:45:45 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/delivery_method.dart:58:43 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/input_button.dart:43:43
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/label_right_checkbox.dart:40:45 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/payment_card.dart:27:43
          • deprecated_member_use
   info • 'title' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is headline6. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/payment_card_preview.dart:51:47 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/payment_card_preview.dart:62:47 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/payment_card_preview.dart:75:47 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/price_slider.dart:45:51
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/price_slider.dart:51:51
          • deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/product_filter.dart:53:68 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/product_filter.dart:64:49 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/product_rating.dart:146:16 •
          deprecated_member_use
   info • 'subtitle' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is subtitle2. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/product_review_item.dart:109:44 • deprecated_member_use
   info • 'body2' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText1. This feature was deprecated after v1.13.8. •
          lib/presentation/widgets/independent/product_review_item.dart:145:44 • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/search_bar.dart:41:45 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/summary_line.dart:22:60
          • deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/summary_line.dart:27:45
          • deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/text_tile.dart:29:59 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/independent/text_tile.dart:30:62 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:131:65 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:132:59 •
          deprecated_member_use
   info • 'display1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline4. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:139:59 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:142:65 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:179:43 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:225:37 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:235:41 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:245:48 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:251:35 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:260:47 •
          deprecated_member_use
   info • 'display3' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern
          term is headline2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:265:37 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:310:42 •
          deprecated_member_use
   info • 'body1' is deprecated and shouldn't be used. This is the term used in the 2014 version of material design. The modern term
          is bodyText2. This feature was deprecated after v1.13.8. • lib/presentation/widgets/product_tile.dart:321:46 •
          deprecated_member_use

138 issues found. (ran in 4.8s)

8. Sign In / Sign Up Screens

8.1. Sign in using email use-case: User enters email and password. The credentials are checked on the server (call to server API). If login was successful then user is redirected to home screen. If an error appeared then user sees error message.

8.2. Sign up using google account use-case: User clicks google icon, user google account credentials are checked. Successful result creates an account for the user locally and makes an API call to the server to add new account. User gets redirected to the home screen.

8.3. Sign up using Facebook account use-case: User clicks Facebook icon, user Facebook account credentials are checked. Successful result creates an account for the user locally and makes an API call to the server to add new account. User gets redirected to the home screen.

8.4. Send password reminder use-case: User enters email on the Forgot Password Screen and clicks “Send” button”. A Server API call is made to check if use exists and to send forgot password email. If it is successful user is sees message from the server (like “An email with password reminder was sent to [email protected]”). If an error appears user see that error.

8.5. Sign up use-case: User fills in the fields on the Sign Up Screen and clicks “Sign Up” button. API request is made to create new user account. If successful then local record for that user is created and user is redirected to home screen. If an error appears then user sees it on the Sign Up Screen.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

14. Profile Settings Screen

14.1. Profile Settings use-case: User clicks “Settings” in My Profile. Settings screen is displayed.

14.2. Change profile use-case: User changes full name field. Updates are saved locally.User changes date of birth field. Updates are saved locally.

14.3. Change notification use-case: Use changes notification for sales, new arrivals or delivery status changes. When changed from ON to OFF a confirmation popup appears and only if confirmed then changed to OFF.

14.4. Update remote profile settings use-case: User leaves Settings Screen. A remote API call is made to update settings.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

11. My Payment Methods

11.1. Payment Methods in the profile use-case: User clicks “Payment Methods” on My Profile Screen. List of available payment methods is displayed. If there are no payment methods available user is redirected to New Payment Method Form.

11.2. Change default payment method in the profile use-case: User clicks on “Use as default payment method” and changes default payment method.

11.3. Add payment method in the profile use-case: Use click “+” button in the list of payment methods. The form to add new card is displayed. User adds card information with validation and clicks “Add Card”. The card is added to local database. User is redirected to the list of payment methods.

11.4. Remove payment method in the profile use-case: User clicks remove button in the list of payment methods. The confirmation popup appears. User selects cancel button. The Payment method stays. User clicks remove button in the list of payment methods. Confirmation popup appears. User clicks “Confirm” button and payment method is removed. According API call is made.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

12. My Promo Codes

12.1. Promo Codes in the profile use-case: User clicks “Promo codes” on My Profile Screen. An API call is made to get list of promo codes. List of promo codes is displayed with “Apply” button.

12.2. Apply Promo Code from the profile use-case: User clicks “Apply” button in the list of My Promo codes. The promo code is applied to current cart. If there is no products in the cart then promo code is set as default to be used in the future.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

Cant Import APP

error - The named parameter 'headline1' isn't defined - lib\config\theme.dart:56:9 - undefined_named_parameter
error - The getter 'headline1' isn't defined for the class 'TextTheme' - lib\config\theme.dart:56:36 - undefined_getter
error - The named parameter 'headline2' isn't defined - lib\config\theme.dart:58:9 - undefined_named_parameter
error - The getter 'headline2' isn't defined for the class 'TextTheme' - lib\config\theme.dart:58:36 - undefined_getter
error - The named parameter 'headline3' isn't defined - lib\config\theme.dart:62:9 - undefined_named_parameter
error - The getter 'headline3' isn't defined for the class 'TextTheme' - lib\config\theme.dart:62:36 - undefined_getter
error - The named parameter 'headline4' isn't defined - lib\config\theme.dart:65:9 - undefined_named_parameter
error - The getter 'headline4' isn't defined for the class 'TextTheme' - lib\config\theme.dart:65:36 - undefined_getter
error - The named parameter 'headline5' isn't defined - lib\config\theme.dart:67:9 - undefined_named_parameter
error - The getter 'headline5' isn't defined for the class 'TextTheme' - lib\config\theme.dart:67:36 - undefined_getter
error - The named parameter 'headline6' isn't defined - lib\config\theme.dart:69:9 - undefined_named_parameter
error - The getter 'headline6' isn't defined for the class 'TextTheme' - lib\config\theme.dart:69:36 - undefined_getter
error - The named parameter 'subtitle1' isn't defined - lib\config\theme.dart:71:9 - undefined_named_parameter
error - The getter 'headline1' isn't defined for the class 'TextTheme' - lib\config\theme.dart:71:36 - undefined_getter
error - The named parameter 'subtitle2' isn't defined - lib\config\theme.dart:73:9 - undefined_named_parameter
error - The getter 'headline1' isn't defined for the class 'TextTheme' - lib\config\theme.dart:73:36 - undefined_getter
error - The named parameter 'bodyText1' isn't defined - lib\config\theme.dart:84:9 - undefined_named_parameter
error - The getter 'bodyText1' isn't defined for the class 'TextTheme' - lib\config\theme.dart:84:36 - undefined_getter
error - The named parameter 'bodyText2' isn't defined - lib\config\theme.dart:89:9 - undefined_named_parameter
error - The getter 'bodyText2' isn't defined for the class 'TextTheme' - lib\config\theme.dart:89:36 - undefined_getter

2. Categories and Products

2.1. Display category list use-case: User on the home page clicks “View All”, categories are loaded and displayed in a list. Then use clicks view all items at the top list of categories and gets to a page of categories in a tile view with tabs.

2.2. Display product list use-case: From the category list use clicks on a category and gets to the list of products in the list view. User clicks on tile view and gets to product list in a tile view.

2.3. Sort products use-case: user clicks on sort by filter and use list is reloaded in sorted according to selection.

2.4. Filter products use-case: User clicks on filters and gets to product filters screen, selects filters and clicks apply. The changes are applied and products are filtered accordingly. User clicks on Filters, selects filters and clicks discard. The products are filtered without changes.

2.5. Filter products by brand: User clicks on Filters, then clicks on brands, selects brands and clicks apply. The list of products is filtered according to selected brands. User clicks on Filters, then clicks on brands, selects brands and clicks discard. The products are filtered without changes.

2.6. Hashtag filter use-case: User clicks on one of the hashtag buttons at the top and sees list of products filtered by that tag.

Product categories and product list discussions.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

1. Home Screen

1.1. Home Screen 1 use-case: Use loads the app, list of new products for home page are loaded and displayed in the app.

1.2. Home Screen 2 use-case: Use loads the app, list of new products and products for sale for home page are loaded and displayed in the app.

Home Screens Discussion

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

Product card widget with 2 views

We need to create product list widget that will support two different views. This widget has to be used in product favs alone with product list by category.

https://miro.medium.com/max/1676/1*U2yof3adfpGlScymFuoDKQ.png

Widgets are described in Widgets in E-commerce App

The problem we have right now is that we have OpenFlutterProductCard widget (widgets/product_tile.dart) and we have widget used in favorites list screen screens/favorites/views/tileView/favorites_tile_item.dart

The task is to update OpenFlutterProductCard to support two views.

4. Product reviews screen

4.1. Product Review List use-case: User clicks on start rating on the product details screen. List of review is loaded with summary at the top. An API call is made to update list of review for current product. New Reviews are shown at the bottom.

4.2. Filter by photos use-case: User clicks “with photos” checkbox. If checked then only reviews with photos are displayed. If unchecked then all reviews are shown.

4.3. Write a review use-case: User clicks “Write a review” button. A popup appears with ability to add review, rating and photos. User clicks button to add new review. The review is added to local database. User is redirected to the list of reviews for current product. API call is made to add review to the server.

Product reviews discussion

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

5. Product Cart screen

5.1. Product cart use-case: List of products in the cart is displayed. If there is a promo code set as default and was not used yet then it is applied to current order in the cart.

5.2. Change product quantity use-case: User clicks on “+” or “-” buttons and changes quantity. The cart item price changes and total amount changes.

5.3. Add product cart item to favorites use-case: User clicks on top right icon of the product cart item and clicks “Add to Favorites” in the popup. The product is added to favorites with the same color and size as the cart item.

5.4. Remove from cart use-case: User clicks on top right icon of the product cart item and clicks “Remove from Cart”. The item is removed from cart and local database cart. Total amount is recalculated.

5.5. Enter promo code use-case: User clicks on button next to “Enter your promo code”. The promo code popup appears with the list of promos available for the user. User can enter promo code into the input in the popup or click “Apply” button in the promo tile. If the code entered in the input is valid or user clicked “Apply” button then the popup hides and selected promo code appears in the “Enter your promo code” input. The discount is applied to each product (product price is crossed and new price shown) and affect total amount.

Product cart and checkout discussion.

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

3. Product details screen

3.1. Product view use-case: User clicks on product tile or list element and gets to according product screen. List of common products is loaded at the bottom of the screen.

3.2. Add product to favorites use-case: User clicks on favorite button on the product details screen, the popup with size and color selection appears, user selects size and color and clicks “Add to Favorites”. The product is added to favorites, favorite button changes to selected view and size and color changes on product details screen.

3.3. Add product to cart use-case: Use clicks on product details screen, a popup with color and size selection appears, user selects size and color and clicks “Add to cart”. Product is added to cart table (local database) with selected size and color and user being redirected to Product Cart Screen with list of added products with according selection.

Product details discussion

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

6. Checkout screen

6.1. Checkout start screen use-case: User clicks “Checkout button” from the Cart Screen and gets to Checkout screen. The default shipping address, payment method and delivery method is displayed. The delivery price is added and affect the Summary.

6.2. Checkout change shipping address: User clicks “Change” in the shipping address tile on the Checkout Screen. List of shipping addresses is displayed.

6.3. Add new shipping address in the checkout use-case: User clicks “+” button on the shipping address list screen in the checkout. The Add Shipping Address Form appears. User fills in the form, fields are validated to be at least 3 chars long. User clicks “Save Address”. The shipping address is added to local database. User is redirected to back to list of shipping addresses.

6.4. Change shipping address in the checkout use-case: User clicks “Use as shipping address” checkbox in the list of shipping addresses in the checkout. The new shipping address is set for the order. User is redirected to checkout start screen.

6.5. Edit shipping address in the checkout use-case: User clicks “Edit” link in the shipping address tile in the checkout. User is redirected to form to edit details on shipping address. The fields are validated to be at least 3 chars long. User edits fields, clicks save, shipping address is updated in local database. User is redirected back to list of shipping addresses in the checkout.

6.6. Checkout change payment method use-case: User clicks “Change” in the payment method tile. List of available payment methods is displayed. User clicks on “Use as default payment method” and changes default payment method and for the current checkout process.

6.7. Add payment method in checkout use-case: Use click “+” button in the list of payment methods. The form to add new card is displayed. User adds card information with validation and clicks “Add Card”. The card is added to local database and set as payment method for the checkout process. User is redirected to checkout start screen.

6.8. Change delivery method in the checkout use-case: User clicks on one of the delivery methods available in the “Delivery Method” section of the screen. The delivery price changes and affects summary.

6.9. Submit order use-case: User clicks “Submit order” in the checkout start page. Request to server is made and the card is used to pay and returns success/error. The order is submitted to the backend too. If the payment was successful user is redirected to success screen. If an error appears user stays on the checkout start page with an error message “Payment was not processed.” (answer from the backend).

Product cart and checkout discussion

E-commerce App Use-Case Description

Within this task you need to do the following:

  1. Pull all data from local database and render it on the screen.

  2. At this time mock remote repository calls for fetching data from a local JSON file. The data structure and method names should be taken from WooCommerce REST API docs.

Functional Requirement Document creation

We are moving to more detailed functionality implementation. Therefore it is good time to create a more detailed document on that. The goal of the document is creation of a detailed specification on application business logic and data access layer. I propose the following structure as a start.

  1. Flutter Clean Architecture Layers
    1.1. Domain
    1.2. App
    1.3. Data
    1.4. Device

  2. Feature Implementation and use case description
    2.1. Home/Splash Screens
    2.2. Product categories and products
    2.3. Cart and Checkout
    2.4. User Accounts
    2.5. Promotion

Add your thoughts on what we should include to make the tasks clear enough to share within the team.

Product list widget with 2 views

We need to create product list widget that will support two different views. This widget has to be used in product favs alone with product list by category.

https://miro.medium.com/max/1658/1*m837Xsv01jYO60ChSRLM4A.png

Widgets are described in Widgets in E-commerce App

The problem we have right now is that we have OpenFlutterProductTile widget (widgets/product_tile.dart) and we have widget used in favorites list screen screens/favorites/views/listView/favorites_list_item.dart

The task is to update OpenFlutterProductTile to support two views.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.