devtray_prefs

A Storage page adapter for shared_preferences, plus persistence for mock rules.

Part of devtray — the overlay, the pages and the stores live in the core package; this is just the shared_preferences glue.

Install

dependencies:
  devtray: ^0.6.2
  devtray_prefs: ^0.6.2

Usage

import 'package:devtray_prefs/devtray_prefs.dart';

// Browse and edit prefs from the Storage page
StorageDebugPage(adapters: [SharedPreferencesStorageAdapter()])

// Make Network-page mock rules survive a restart
DevtrayMocks.instance.storage = SharedPreferencesMockRuleStorage();

Two independent pieces — use either. Without the second, mock rules are session-only and vanish on hot restart.

Docs

Full setup and the other integrations: https://github.com/hassan171/devtray

License

MIT — see LICENSE.

Libraries

devtray_prefs
shared_preferences support for devtray. Two unrelated things that happen to need the same package: