Facebook Twitter Instagram
    DeepCrazyWorld
    Facebook Twitter Instagram Pinterest YouTube
    • FLUTTER
      • FLUTTER APP
        • QRCode
        • Quiz App
        • Chat GPT
        • PDF App
        • News App
        • Fitness App
        • Weather App
        • BMI Calculator
        • GAME APP
        • Ecommerce App
        • wallpaper App
        • Finance app
        • Chat App
        • Wallet App
        • Taxi App
        • Quran app
        • Music player app
      • FLUTTER UI
        • Splash Screen
        • Onboarding Screen
        • Login Screen
        • Card Design
        • Drawer
    • PROJECT
      • Android Projects
      • College Projects
      • FLUTTER APP
      • Project Ideas
      • PHP Projects
      • Python Projects
    • SOURCE CODE
    • ANDROID
      • ANDROID APP
      • GAME APP
      • ANDROID STUDIO
    • MCQ
      • AKTU MCQ
        • RPA MCQ
        • COA MCQ
        • HPC MCQ
        • SPM MCQ
        • Renewable Energy All MCQ
        • Data Compression MCQ
        • Data Structure MCQ
        • Digital Image Processing MCQ
        • Software Engineering MCQ
        • Machine Learning MCQ
        • Artificial Intelligence MCQ
      • D PHARMA MCQ
        • Pharmaceutics – I MCQ
        • Pharmacognosy MCQ
        • Pharmaceutical Chemistry MCQ
        • Biochemistry and Clinical Pathology MCQ
        • Human Anatomy and Physiology MCQ
        • Heath Education and Community Pharmacy MCQ
    • INTERVIEW QUESTIONS
      • Flutter Interview Questions
      • INTERVIEW QUESTIONS
      • Python Interview Questions
      • Coding ninjas solution
    • MORE
      • WORDPRESS
        • SEO
        • TOP 10 WORDPRESS THEME
      • PRODUCTIVITY
      • Program
      • QUOTES
    DeepCrazyWorld
    Home»Ecommerce App»Flutter Ecommerce App build using flutter, getx with source code
    Ecommerce App

    Flutter Ecommerce App build using flutter, getx with source code

    DeepikaBy DeepikaNovember 11, 2023Updated:November 11, 2023No Comments6 Mins Read

    Crafty-Bay – Flutter ecommerce App build using flutter, getx with source code

    Table of Contents

    Toggle
    • Description
    • Responsibilities
    • Features of the app With Screenshots
    • Used Packages
    • folder structure
    • License
    • Get Full Source Code
    • Conclusion
        • Related Articles:
      • READ MORE

    Description

    Welcome to Crafty-Bay. A full e-commerce application build using flutter, getx . This app is a complete ecommerce app with all the features like add to cart, wishlist, review, checkout etc. This app is built with flutter and dart.

    Responsibilities

    As the creator of CraftyBay, my responsibilities included:

    • Designing the app’s user interface (UI).
    • Developing the complete ecommerce app.
    • Adding user profiles for a personalized shopping experience.
    • Allowing product addition to wishlists for user convenience.
    • Implementing color and size filters for product selection.
    • Categorizing products into four distinct categories.
    • Showcasing special, new, and popular products.
    • Creating an attractive product carousel slider.
    • Enabling users to write and share product reviews.

    Features of the app With Screenshots

    TaskScreenshotTaskScreenshot
    Splash ScreenSplash ScreenLogin ScreenLogin Screen
    Complete Profile ScreenComplete Profile ScreenOTP Verification ScreenOTP Verification Screen
    Home ScreenHome ScreenCategories ScreenCategories Screen
    Products Details ScreenProducts Details ScreenCart ScreenCart Screen
    Wish List ScreenWish List ScreenReview Showing ScreenReview Showing Screen
    Create Review ScreenCreate Review Screen
    Flutter Ecommerce App

    Used Packages

    CraftyBay integrates the following packages to enhance functionality:

    • flutter_svg: ^2.0.7: A Flutter package for rendering SVG (Scalable Vector Graphics) images. It allows you to easily display and manipulate SVG files in your Flutter application.
    • get: ^4.6.5: Get is a state management library for Flutter that simplifies the process of managing application state. It provides a clean and efficient way to handle state and dependencies in your app.
    • font_awesome_flutter: ^10.5.0: This package allows you to easily integrate Font Awesome icons into your Flutter application. Font Awesome is a popular library of vector icons.
    • pin_code_fields: ^8.0.1: Pin Code Fields is a Flutter package that helps you implement PIN or OTP input fields in your app. It’s highly customisable and easy to use for user authentication and verification.
    • carousel_slider: ^4.2.1: Carousel Slider is a package for creating image carousels and sliders in your Flutter app. It’s useful for creating interactive and dynamic image galleries.
    • http: ^1.1.0: The HTTP package provides a straightforward way to make HTTP requests in your Flutter app. It’s essential for fetching data from APIs and working with web services.
    • flutter_launcher_icons: ^0.13.1: This package simplifies the process of generating and setting app icons for your Flutter application. It allows you to customize app icons with ease.
    • shared_preferences: ^2.2.1: Shared Preferences is a Flutter package for persisting simple key-value data in a platform-agnostic manner. It’s commonly used for storing app settings and small amounts of data.
    • shimmer: ^3.0.0: Shimmer is a package for adding a shimmering effect to your Flutter widgets. It’s often used to create loading or placeholder animations to improve user experience.
    • connectivity_plus: ^5.0.1: Connectivity Plus is a Flutter package for monitoring network connectivity. It helps you check the status of the device’s network connection and react to changes in connectivity.
    <img decoding=
    Flutter Ecommerce App

    folder structure

    craftyBay/
        ├── assets/
        │   └── images/
        └── lib/
            ├── application/
            │   ├── apps.dart
            │   └── state_holder_binding.dart
            ├── data/
            │   ├── models/
            │   │   ├── brands.dart
            │   │   ├── cart_list_data.dart
            │   │   ├── cart_list_model.dart
            │   │   ├── category_data.dart
            │   │   ├── category_model.dart
            │   │   ├── home_screen_slider_data.dart
            │   │   ├── home_screen_slider_model.dart
            │   │   ├── network_response.dart
            │   │   ├── products.dart
            │   │   ├── products_details.dart
            │   │   ├── products_details_model.dart
            │   │   ├── products_model.dart
            │   │   ├── review_list_model.dart
            │   │   └── user_read_profile_model.dart
            │   ├── services/
            │   │   └── network_caller.dart
            │   └── utils/
            │       └── url_links.dart
            ├── presentation/
            │   ├── state_holder/
            │   │   ├── add_to_cart_controller.dart
            │   │   ├── auth_controller.dart
            │   │   ├── cart_list_controller.dart
            │   │   ├── categories_controller.dart
            │   │   ├── complete_profile_controller.dart
            │   │   ├── create_review_controller.dart
            │   │   ├── create_wish_list.dart
            │   │   ├── delete_cart_list.dart
            │   │   ├── email_verification_controller.dart
            │   │   ├── home_screen_slider_controller.dart
            │   │   ├── main_bottom_nav_controller.dart
            │   │   ├── new_products_controller.dart
            │   │   ├── popular_products_controller.dart
            │   │   ├── products_details_controller.dart
            │   │   ├── products_wish_list_controller.dart
            │   │   ├── read_profile_controller.dart
            │   │   ├── review_list_controller.dart
            │   │   ├── spacial_products_controller.dart
            │   │   └── verify_login_controller.dart
            │   └── ui/
            │       ├── screen/
            │       │   ├── auth/
            │       │   │   ├── complete_profile_screen.dart
            │       │   │   ├── email_verification_screen.dart
            │       │   │   └── otp_screen.dart
            │       │   ├── cart_screen.dart
            │       │   ├── categories_screen.dart
            │       │   ├── create_review_screen.dart
            │       │   ├── home_screen.dart
            │       │   ├── item_screen.dart
            │       │   ├── main_bottom_nav_screen.dart
            │       │   ├── products_details_screen.dart
            │       │   ├── review_showing_screen.dart
            │       │   ├── splash_screen.dart
            │       │   └── wish_list_screen.dart
            │       ├── utils/
            │       │   ├── app_color.dart
            │       │   ├── color_extension.dart
            │       │   └── images_utils.dart
            │       └── widgets/
            │           ├── home_screen_widgets/
            │           │   ├── home_carousel_slider.dart
            │           │   ├── home_screen_search_bar.dart
            │           │   └── home_slider.dart
            │           ├── products_details_screen_widgets/
            │           │   ├── home_carousel_slider.dart
            │           │   └── home_screen_search_bar.dart
            │           ├── app_bar_icons.dart
            │           ├── bottom_price_details_and_button.dart
            │           ├── cart_screen_list_tile_card.dart
            │           ├── categories_card.dart
            │           ├── custom_app_bar.dart
            │           ├── custom_otp_field.dart
            │           ├── custom_stepper.dart
            │           ├── love_icon_button.dart
            │           ├── products_card.dart
            │           ├── products_carousel_slider.dart
            │           └── title_header_and_see_all_button.dart
            └── main.dart
    

    License

    This project is licensed under the MIT License – see the LICENSE.md file for details.

    Resources Used:

    • YouTube
    • Dart & Flutter Packages

    You can check out the entire code of this App here:

    Get Full Source Code

    View Github

    download source code

    Conclusion

    This was all about a quick go through the basic flutter App UI Screen. If you need any assistance regarding flutter app development, you can consult a flutter developer from FlutterDesk. We would love to be of help. Still, if you feel any difficult while dealing with Flutter app development projects, you can reach out to us or hire Flutter developers to outsource any of your app development project.

    Do like & share my Facebook page. if you find this post helpful. Thank you!!

    Happy coding! 😉

    Related Articles:

    • How to Install Flutter in windows 10
    • How to Setup Space Between Elements In Flutter 
    • Flutter Card Widget with Example
    • Integrating an API into a Flutter – Working with REST APIs
    • Create a simple splash screen in Flutter
    • Android Projects with Source Code
    • Flutter Interview Questions
    • School Database Management System Project 
    • Create A Simple Splash Screen UI design
    • Create Login Page UI Design and Animation For Flutter
    • Scan QR Code Flutter App Source Code
    • Barcode and QR code scanner app in flutter source code
    • QR Generator & Scanner app using flutter with source code
    • Full login app project with google and apple authentication in flutter
    • Signup and Login app with firebase auth to facilitate in flutter
    • Login and Register app UI screen with flutter source code
    • Create Login Signup Screen in Flutter source code
    • Flutter Login and Signup authentication app source code
    • Flutter Weather app built for Android and iOS with source code
    • Flutter weather application for viewing the weather source code
    • Beautiful Plants App UI design using flutter and firebase
    • Daily expense tracking and finance management flutter app
    • Flutter Quran app to read or listen to the holly quran source code

    READ MORE

    Share. Facebook Twitter LinkedIn WhatsApp Telegram Pinterest Reddit Email
    Previous ArticleBeautiful Plants App UI design using flutter and firebase source code
    Next Article Daily expense tracking and finance management flutter app

    Related Posts

    Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile

    FLUTTER 5 Mins Read

    Animated Backgrounds in Flutter: A Complete Guide

    FLUTTER 4 Mins Read

    How to make Diary App using flutter stepwise using getx

    FLUTTER APP 4 Mins Read

    How to Create Music Player UI screen with fully functional in flutter

    FLUTTER APP 3 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
    • Creating an Instruction UI Screen in Flutter Application March 29, 2025
    • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
    • How to make Diary App using flutter stepwise using getx August 31, 2024
    • How to Create Music Player UI screen with fully functional in flutter August 30, 2024
    • How to make ListView Builder Ui in flutter with Source Code August 29, 2024
    • Create a TabBar View in flutter with fully functional stepwise August 28, 2024
    • How to create TabBar view in flutter with source code step wise August 27, 2024
    • How to make Heart rate measure app with Flutter stepwise August 26, 2024
    • How to make ChatGpt App in flutter with source code Stepwise August 25, 2024
    Facebook Twitter Instagram Pinterest YouTube
    • About
    • Contact
    • Disclaimer
    • Privacy Policy
    Copyright by DeepCrazyWorld © 2025

    Type above and press Enter to search. Press Esc to cancel.