Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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: about 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.

Awesome Lists containing this project

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``