Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rohan20/flutter-products-tutorial
A Flutter e-commerce starter kit built using ScopedModel
https://github.com/rohan20/flutter-products-tutorial
android cross-platform dart flutter google ios scoped-model
Last synced: about 2 months ago
JSON representation
A Flutter e-commerce starter kit built using ScopedModel
- Host: GitHub
- URL: https://github.com/rohan20/flutter-products-tutorial
- Owner: rohan20
- Created: 2018-07-25T12:11:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-05T18:39:46.000Z (about 6 years ago)
- Last Synced: 2024-10-30T01:44:16.655Z (2 months ago)
- Topics: android, cross-platform, dart, flutter, google, ios, scoped-model
- Language: Dart
- Homepage: https://fluttermarket.com/view/flutter-e-commerce-backend
- Size: 178 KB
- Stars: 128
- Watchers: 9
- Forks: 84
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flutter E-Commerce App
A Flutter e-commerce starter kit built using [ScopedModel](https://pub.dartlang.org/packages/scoped_model) for state management that allows you to view a list of paginated products and its details. Originally built by the Flutter team at [GeekyAnts](www.geekyants.com).
You can checkout the complete starter kit on Flutter Market: [Link](https://fluttermarket.com/view/flutter-e-commerce-backend)
Medium tutorial: [Link](https://blog.geekyants.com/flutter-e-commerce-backend-app-2d23121fd0c8-2d23121fd0c8)
Docs for Admin dashboard: [Link](http://docs.fluttermarket.com/flutter-ecommerce-backend/)
## Setup
You need to add a `remote_config.dart` file in the `lib`>`util` directory as follows:
```
class RemoteConfig {
static final Map config = {
"AuthorizationToken":
"YOUR_API_KEY",
"BASE_URL": "www.BASE_URL.com",
"BASE_PRODUCTS_URL": "/BASE_PRODUCTS_URL/products/categoryId=1",
};
}
```