Skip to content

This Flutter e-commerce app integrates with the Fake Store API, offering features like infinite scrolling, product detail pages, search, user authentication, sorting, and a shopping cart. It uses state management and a service-oriented architecture for a responsive and maintainable codebase.

Notifications You must be signed in to change notification settings

SrijaPilli/Ecommerce_app-Using-Flutter

Repository files navigation

ecommerce_app

A new Flutter project.

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference. main.dart The entry point of the application. It initializes the application and sets up routes for navigation.

models/ Contains data models for the application.

product.dart: Defines the Product model which represents a product in the store.
user.dart: Defines the User model which represents a user in the application.
providers/ Contains the state management logic for the application.

product_provider.dart: Manages the state for product data including fetching product lists and handling infinite scrolling.
search_provider.dart: Manages the state for product search functionality.
auth_provider.dart: Manages the state for user authentication including login and registration.
cart_provider.dart: Manages the state for the shopping cart, including adding and removing items from the cart.
services/ Contains services for API interactions.

api_service.dart: Handles communication with the Fake Store API for fetching product data.
auth_service.dart: Manages user authentication logic such as login and registration.
screens/ Contains the UI screens of the application.

homepage.dart: Displays the homepage with infinite scrolling of products.
product_detail_page.dart: Shows the details of a selected product.
search_page.dart: Displays the search results for products.
login_page.dart: Provides the user interface for user login.
register_page.dart: Provides the user interface for user registration.
cart_page.dart: Displays the shopping cart with items added by the user.
widgets/ Contains reusable UI components.

product_item.dart: Represents a single product item in a list or grid.
search_bar.dart: Provides a search bar widget for product search.
cart_item.dart: Represents a single item in the shopping cart.
utils/ Contains utility classes and constants.

constants.dart: Defines application-wide constants such as API endpoints, styles, and other configurations.
Getting Started To get started with this project, follow the steps below:

Clone the repository:

sh Copy code git clone https://github.com/SrijaPilli/ecommerce-flutter-app.git cd ecommerce-flutter-app Install dependencies:

sh Copy code flutter pub get Run the application:

sh Copy code flutter run

Dependencies

The project uses the following dependencies:

provider: For state management.
http: For making HTTP requests.
flutter_secure_storage: For securely storing user credentials.
API The application uses the Fake Store API to fetch product data. Ensure you have an active internet connection to interact with the API.

Features

Homepage with Infinite Scrolling: Browse products with continuous scrolling.
Product Detail Page: View detailed information about a product.
Product Search Functionality: Search for products by name or category.
User Authentication: Register and log in to your account.
Product Sorting Functionality: Sort products by price, popularity, etc.
Cart Functionality: Add and remove products from the shopping cart.

About

This Flutter e-commerce app integrates with the Fake Store API, offering features like infinite scrolling, product detail pages, search, user authentication, sorting, and a shopping cart. It uses state management and a service-oriented architecture for a responsive and maintainable codebase.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published