developer_tools_shared_preferences

Shared Preferences integration for developer_tools. Browse, search, edit, add, delete, and export stored preferences from the debug overlay.

Features

  • Preferences Browser – View all stored key-value pairs with type indicators, search, edit, add, and delete.
  • Quick Actions – Clear all preferences, export as JSON to clipboard, and view preference count.
  • Supports all SharedPreferences types: String, int, double, bool, and List<String>.

Installation

dependencies:
  developer_tools: ^0.0.1
  developer_tools_shared_preferences:
  shared_preferences: ^2.5.0

Usage

MaterialApp(
  builder: DeveloperTools.builder(
    extensions: const [DeveloperToolsSharedPreferences()],
  ),
);