A Flutter e-commerce starter kit built using ScopedModel

  ecommerce, Flutter App, UI

Flutter E-Commerce App

A Flutter e-commerce starter kit built using ScopedModel for state management that allows you to view a list of paginated products and its details. Originally built by the Flutter team at GeekyAnts.

You can checkout the complete starter kit on Flutter Market: Link

Setup

You need to add a remote_config.dart file in the lib>util directory as follows:

class RemoteConfig {
  static final Map<dynamic, String> config = {
    "AuthorizationToken":
        "YOUR_API_KEY",
    "BASE_URL": "www.BASE_URL.com",
    "BASE_PRODUCTS_URL": "/BASE_PRODUCTS_URL/products/categoryId=1",
  };
}

Download Source Code on GitHub

https://github.com/rohan20/flutter-products-tutorial