LIVE PREVIEWBUY FOR $18

White MakeUp App Documentation

White MakeUp App Documentation

======================

Introduction

—-

This documentation explains the utilization and configuration of the White MakeUp Themed Flutter software. The aim of this software is to offer customers with info and visible show of White MakeUps. The GetX bundle is used for state administration and navigation inside the software.

Set up

—-

  • 1. Ensure Flutter is put in. Seek advice from the [Flutter Installation Guide](https://flutter.dev/docs/get-started/install) for directions on how you can set up Flutter.
  • 2. To put in venture dependencies, comply with these steps:

    – Open the `pubspec.yaml` file.
    – Add the next dependencies to the `dependencies` part:

    
        `dependencies:
              google_fonts: 
              carousel_slider: ^4.2.1
              flutter_svg: ^1.1.6
              get: ^4.6.5
              salomon_bottom_bar: ^3.3.1
              circles_background: ^0.0.2
              shimmer: ^2.0.0
              cached_network_image: ^3.2.3
              disposable_cached_images: ^1.1.2
              string_splitter: ^1.0.0+1
              flutter_zoom_drawer: ^3.0.3
              flutter_rating_bar: ^4.0.1
              flutter_staggered_grid_view: ^0.6.2
              dropdown_search: ^5.0.5
              fancy_shimmer_image: ^2.0.2
              http: ^0.13.5
              dio: ^4.0.6
              find_dropdown: ^1.0.0
              flutter_slider_indicator: ^1.0.0
              readmore: ^2.1.0
              favorite_button: ^0.0.4
              video_player: ^2.5.1
              flutter_carousel_media_slider: ^0.0.2
              badges: ^3.0.2
              sqflite: ^2.2.4+1
              path_provider: ^2.0.12
              supplier: ^6.0.5
              shared_preferences: ^2.0.17
              material_floating_search_bar: ^0.3.7
          
  • 3. To replace the dependencies, run the next command within the terminal:

    bashCopy code

    `flutter pub get`

  • – `lib/controllers`: Accommodates the controller courses used inside the software. State administration with GetX is dealt with on this part.
  • – `lib/fashions`: Accommodates the White MakeUp mannequin and different information fashions.
  • – `lib/screens`: Accommodates the appliance screens.
  • – `lib/widgets`: Accommodates reusable widgets.
  • – `lib/important.dart`: The entry level of the appliance.
  • – `belongings/photographs`: Accommodates the White MakeUp photographs.
  • – `belongings/fonts`: Accommodates the fonts used within the software.
  • – `pubspec.yaml`: Defines the dependencies and belongings of the venture.

Core Options

The White MakeUp software gives the next core options:

  • 1. Dwelling Display screen:
    • – Slideshow displaying the White MakeUp assortment.
    • – Filtering choices by classes.
    • – Record view of common White MakeUps.
  • 2. White MakeUp Particulars:
    • – Shows detailed info of a particular White MakeUp.
    • – Slide present of White MakeUp photographs.
    • – Worth and inventory info.

Dependencies

—-

The applying makes use of the next dependencies:

  • – `flutter_svg`: Helps SVG photographs in Flutter.
  • – `get`: State administration and navigation bundle.
  • – `google_fonts`: Supplies entry to Google fonts.
  • – `hive_flutter`: Database administration bundle.
  • – `http`: Handles HTTP requests.


Source