Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devmnj/Hivedb-Flutter-Todo
A Hivedb-Flutter powered Todo app , which let users add todo items and delete finished one. The data is stored using NoSQL database Hivedb boxes which deliver blazingly fast performance.
https://github.com/devmnj/Hivedb-Flutter-Todo
flutter-apps flutter-database flutter-examples hivedb local-storage nosql-database
Last synced: 2 months ago
JSON representation
A Hivedb-Flutter powered Todo app , which let users add todo items and delete finished one. The data is stored using NoSQL database Hivedb boxes which deliver blazingly fast performance.
- Host: GitHub
- URL: https://github.com/devmnj/Hivedb-Flutter-Todo
- Owner: devmnj
- Created: 2020-11-03T05:25:27.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-03T05:38:14.000Z (about 4 years ago)
- Last Synced: 2024-08-02T05:12:09.529Z (6 months ago)
- Topics: flutter-apps, flutter-database, flutter-examples, hivedb, local-storage, nosql-database
- Language: Dart
- Homepage: http:\\developerm.dev
- Size: 119 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-blazingly-fast - Hivedb-Flutter-Todo - A Hivedb-Flutter powered Todo app , which let users add todo items and delete finished one. The data is stored using NoSQL database Hivedb boxes which deliver blazingly fast performance. (Dart)
README
# Hive DB-Flutter Todo
A Hive DB-Flutter [NoSQL] Todo application.
## Getting Started
This is a flutter Todo application, which uses `Hivedb` NoSQL database , which featuring *lightweight* and *blazingly fast performance*.
Hive DB can be used for almost any app , where relational database is not required. The boxes store data using key,value pair.
The Hive DB requires `adapters`which can be autogenerated by build_runner (in our case for `Todo.dart` file) using the following command
`` flutter packages pub run build_runner build --delete-conflicting-outputs ``
> Hive Box represents your data collection
For more information about Hive visit the [Repository](https://github.com/hivedb/hive)
> Do not forget to run ``pub get``