siimple 0.0.5 copy "siimple: ^0.0.5" to clipboard
siimple: ^0.0.5 copied to clipboard

Simple but powerful, easy to use and fast NoSQL database for flutter.

Siimple #

Simple but powerful, easy to use and fast NoSQL database for flutter.

Usage: #

// Initialize database
final db = Siimple();
await db.initialize();

// Create or get todo collection
final todoCollection = db.collection('todos');

// Create new todo
todoCollection.create({'text': 'This is a dummy todo.'});

// Get all todos
todoCollection.query().findAll();

// Get todos by some conditions
todoCollection.query().where("text__contains", "t").limit(5).findAll();

See /example for better understanding.

3
likes
0
points
28
downloads

Publisher

verified publishermindcraft.ing

Weekly Downloads

Simple but powerful, easy to use and fast NoSQL database for flutter.

Repository (GitHub)
View/report issues

Topics

#database #siimple #sqlite #isar #storage

License

unknown (license)

Dependencies

path_provider, uuid

More

Packages that depend on siimple