├── .vscode └── settings.json ├── README.md ├── djangof ├── .gitignore ├── manage.py ├── media │ └── products │ │ ├── Smart_Asus_Laptop.jpg │ │ ├── smart_Dell_laptop.jpg │ │ ├── smart_Dell_laptop_gQp47yI.jpg │ │ ├── smart_Hp_laptop.jpg │ │ └── smart_Hp_laptop_GTkhxJN.jpg ├── project │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py └── shop │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ └── views.py └── flutterd ├── .gitignore ├── README.md ├── lib ├── main.dart ├── models │ ├── cart.dart │ ├── order.dart │ └── product.dart ├── screens │ ├── cart_screens.dart │ ├── favorit_screens.dart │ ├── home_Screens.dart │ ├── login_screens.dart │ ├── order_history_screens.dart │ ├── order_screens.dart │ ├── product_details_screens.dart │ └── register_screens.dart ├── state │ ├── cart_state.dart │ ├── product_state.dart │ └── user_state.dart └── widgets │ ├── add_drower.dart │ └── singleProduct.dart └── pubspec.yaml /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/README.md -------------------------------------------------------------------------------- /djangof/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/.gitignore -------------------------------------------------------------------------------- /djangof/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/manage.py -------------------------------------------------------------------------------- /djangof/media/products/Smart_Asus_Laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/media/products/Smart_Asus_Laptop.jpg -------------------------------------------------------------------------------- /djangof/media/products/smart_Dell_laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/media/products/smart_Dell_laptop.jpg -------------------------------------------------------------------------------- /djangof/media/products/smart_Dell_laptop_gQp47yI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/media/products/smart_Dell_laptop_gQp47yI.jpg -------------------------------------------------------------------------------- /djangof/media/products/smart_Hp_laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/media/products/smart_Hp_laptop.jpg -------------------------------------------------------------------------------- /djangof/media/products/smart_Hp_laptop_GTkhxJN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/media/products/smart_Hp_laptop_GTkhxJN.jpg -------------------------------------------------------------------------------- /djangof/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangof/project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/project/asgi.py -------------------------------------------------------------------------------- /djangof/project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/project/settings.py -------------------------------------------------------------------------------- /djangof/project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/project/urls.py -------------------------------------------------------------------------------- /djangof/project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/project/wsgi.py -------------------------------------------------------------------------------- /djangof/shop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangof/shop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/admin.py -------------------------------------------------------------------------------- /djangof/shop/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/apps.py -------------------------------------------------------------------------------- /djangof/shop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/migrations/0001_initial.py -------------------------------------------------------------------------------- /djangof/shop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangof/shop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/models.py -------------------------------------------------------------------------------- /djangof/shop/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/serializers.py -------------------------------------------------------------------------------- /djangof/shop/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/tests.py -------------------------------------------------------------------------------- /djangof/shop/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/urls.py -------------------------------------------------------------------------------- /djangof/shop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/djangof/shop/views.py -------------------------------------------------------------------------------- /flutterd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/.gitignore -------------------------------------------------------------------------------- /flutterd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/README.md -------------------------------------------------------------------------------- /flutterd/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/main.dart -------------------------------------------------------------------------------- /flutterd/lib/models/cart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/models/cart.dart -------------------------------------------------------------------------------- /flutterd/lib/models/order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/models/order.dart -------------------------------------------------------------------------------- /flutterd/lib/models/product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/models/product.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/cart_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/cart_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/favorit_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/favorit_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/home_Screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/home_Screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/login_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/login_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/order_history_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/order_history_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/order_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/order_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/product_details_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/product_details_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/screens/register_screens.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/screens/register_screens.dart -------------------------------------------------------------------------------- /flutterd/lib/state/cart_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/state/cart_state.dart -------------------------------------------------------------------------------- /flutterd/lib/state/product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/state/product_state.dart -------------------------------------------------------------------------------- /flutterd/lib/state/user_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/state/user_state.dart -------------------------------------------------------------------------------- /flutterd/lib/widgets/add_drower.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/widgets/add_drower.dart -------------------------------------------------------------------------------- /flutterd/lib/widgets/singleProduct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/lib/widgets/singleProduct.dart -------------------------------------------------------------------------------- /flutterd/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithrafiq/Django-flutter-eCommerce/HEAD/flutterd/pubspec.yaml --------------------------------------------------------------------------------