https://github.com/erabossid/flutter-shop-app
https://github.com/erabossid/flutter-shop-app
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/erabossid/flutter-shop-app
- Owner: erabosscode
- Created: 2022-12-03T17:55:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T13:03:25.000Z (about 3 years ago)
- Last Synced: 2025-02-07T02:22:53.990Z (about 1 year ago)
- Language: Dart
- Size: 349 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flutter_shop_app
* Replace all the url in lib/providers/products_provider.dart file with yours one.
* Replace all the url in lib/providers/product.model.dart file
* Replace all the url in lib/providers/order_provider.dart file
* Replace all the url in lib/providers/cart_provider.dart file
* Replace all the url in lib/providers/auth_provider.dart file
## Firebase rules
```json
{
"rules": {
".read": "auth !=null",
".write": "auth !=null",
"products":{
".indexOn": ["ownerId"]
}
}
}
```