Last updated:
0 purchases
shared preferences debugger
shared_preferences_debugger #
This package is designed to simplify the debugging of the shared_preferences plugin package.
By using this package, you can easily display, copy to clipboard, and delete the data stored in shared_preferences.
Sample
Usage #
Just use SharedPreferencesDebugPage() anywhere you want.
SharedPreferencesDebugPage() is wrapper of Scaffold, so it is recommend to use as new screen like following code..
IconButton(
icon: const Icon(Icons.bug_report),
onPressed: () {
Navigator.of(context).push<void>(
MaterialPageRoute(
builder: (context) => const SharedPreferencesDebugPage(),
),
);
},
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.