A Flutter desktop starter that aims for a PocketBase-like local admin UI, but for SQLite.
- Open a local SQLite database file (
.db,.sqlite,.sqlite3) - Browse tables (sidebar)
- Write & run ad-hoc SQL
- View results as a table
- Basic bar chart view (expects 2 columns: label + numeric value)
- This is an early foundation: currently optimized for read-only exploration.
- Some SQLite features (e.g. parameterized PRAGMA) are limited; table names used in PRAGMA calls are selected from
sqlite_master.
This repo intentionally doesn’t include generated platform folders. Generate them with:
flutter create .Then you can run/build:
flutter run -d macos
flutter run -d linux
flutter run -d windows
flutter build macos
flutter build linux
flutter build windows