/bookpedia

Simple book app

Primary LanguageDart

Bookpedia πŸ“š

Feature in The App

  • πŸ“™Create book by click on floating action button in homepage
  • πŸ“’ See list of books in homepage
  • πŸ“˜See detail of each book by clicking on the book card in homepage
  • πŸ“—Update book by clicking on edit icon on the book card in homepage
  • πŸ“•Delete book by clicking on delete icon on the book card in homepage

APK

Bookpedia Apk

About This App

Flutter

This app is made with Flutter 3.10.5

  dart: ">=3.0.5 <4.0.0"
  flutter: ">=3.3.0"

Setup

Clone project

git clone 

Get All Dependencies/Packages

flutter pub get

Generate *.g.dart files

flutter pub run build_runner build --delete-conflicting-outputs

Run Project on Device/Emulator

Debug

flutter run

Release

flutter run --release

Project structure in lib

β”œβ”€β”€ core                    # Core files used generally in the app 
β”‚   β”œβ”€β”€ constants           # Const variables used in the app
β”‚   β”œβ”€β”€ design              # Design system of the app(atom, decoration, layout, style)
β”‚   └── router              # Router system of the app
β”‚   └── session             # Session manager used in the app
β”œβ”€β”€ data                    # Data source call system of the app
β”œβ”€β”€ di                      # Dependency Injection
β”œβ”€β”€ domain                  # Base model and use case
β”œβ”€β”€ feature                 # Feature of the app including the controller and ui