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
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",
};
}