Storage Explorer

Browse, edit, and manage all your app's persisted data. See every key-value pair in real-time, with an event stream of every write and diffs of what changed.

Storage Overview

Storage Overview

Browse all keys with stats—valid, missing, and issues. Filter by backend: AsyncStorage, MMKV, or Secure Store.

Supported Backends

BackendNotes
shared_preferencesdetected automatically, live browse + edit
Secure / MMKV backendsoptional — registered the same way

Installation

sh
flutter pub add buoy_storage
flutter pub add buoy_storage

Using the buoy umbrella? It's already included. Standalone:

dart
import 'package:buoy_storage/buoy_storage.dart';

void main() {
  if (kDebugMode) registerBuoyStorage();
  runApp(const MyApp());
}
import 'package:buoy_storage/buoy_storage.dart';

void main() {
  if (kDebugMode) registerBuoyStorage();
  runApp(const MyApp());
}

Live monitoringshared_preferences has no change stream, so Buoy watches writes made through the app and re-scans on an interval, so changes from anywhere still show up.


What You Can Do

Browse

View all keys and values

Edit

Modify values in real-time

Delete

Remove individual keys

Clear

Wipe all storage data

Search

Filter keys instantly

Copy

Export values to clipboard


What's Next