storage_explorer 1.0.0 copy "storage_explorer: ^1.0.0" to clipboard
storage_explorer: ^1.0.0 copied to clipboard

A Flutter package for exploring and visualizing local SQLite databases during development.

Storage Explorer #

A Flutter package for exploring and visualizing local SQLite databases during development.

Storage Explorer Screenshot

Features #

  • Visualize all database tables and their contents
  • Paginated table data navigation
  • Customizable page size
  • Floating Action Button (FAB) integration
  • FAB only appears in debug mode to avoid exposing data in production
  • Works with SQLite databases created using packages like sqflite and sqlite3

Installation #

Add the package to your pubspec.yaml:

dependencies:
  storage_explorer: ^1.0.0

Run:

flutter pub get

Usage #

import 'package:flutter/material.dart';
import 'package:storage_explorer/storage_explorer.dart';

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('My App')),
        body: Center(child: Text('My App Content')),
        floatingActionButton: StorageExplorer(
          databasePath: 'path/to/your/database.db',
        ),
      ),
    );
  }
}
4
likes
140
points
87
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for exploring and visualizing local SQLite databases during development.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, sqlite3, sqlite3_flutter_libs

More

Packages that depend on storage_explorer