Skip to content

vijarp/flutter-products-tutorial

 
 

Repository files navigation

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

Medium tutorial: Link

Docs for Admin dashboard: 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",
  };
}

About

A Flutter e-commerce starter kit built using ScopedModel

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 96.9%
  • Swift 1.6%
  • Kotlin 1.4%
  • Objective-C 0.1%