flutter_sqflite_manager 0.1.0 copy "flutter_sqflite_manager: ^0.1.0" to clipboard
flutter_sqflite_manager: ^0.1.0 copied to clipboard

outdated

A flutter plugin to visually manage your sqflite database.

Flutter Sqflite Manager #

To manage your sqflite database in Flutter.

Browse the database's tables, see the rows inside them, empty tables and delete the entire database. Review your tables' columns and the corresponding column type.

This is still an early preview, some behaviors can change or being removed. Every feedback, bug report or feature request is welcome, please send it at the issue tracker

Get started #

Wrap your app with SqfliteManager passing the sqflite database as parameter. Usually the database is of Future<Database>, check the example to see a FutureBuilder implementation. Use the enable parameter to switch between testing and production.

SqfliteManager(
    database: _database,
    // Update rowsPerPage parameter to avoid scrolling in different screen sizes
    rowsPerPage: 6
    enable: true,
    child: YourApp()
)
2
likes
0
pub points
24%
popularity

Publisher

unverified uploader

A flutter plugin to visually manage your sqflite database.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, sqflite

More

Packages that depend on flutter_sqflite_manager