A demo app built in Flutter.
To run the app in debug mode:
$ flutter run
This assumes you have an Android emulator, iOS Simulator, or an attached physical device.
- Login / Regiser user
- View all books
- Sort books by name/rating/number of users who have read/number of users who want to read
- Mark books as want to read/reading/have read
- Rate books
Code is organized in a loose and shallow feature-first fashion. In lib, you'll find directories such as Authentication,Books or api.
lib
├── Authentication
│ └── Widgets
├── Books
│ └── Widgets
├── Public Users
├── api
├── ...
└── main.dart