A DevTools extension for Flutter's shared_preferences package.
This package contains the source code for the package:shared_preferences DevTools extension. With this tool, you can:
SharedPreferences.It supports all data types available in SharedPreferences:
StringintdoubleboolList<String>shared_preferences package and copy its debug service URL.shared_preferences_tool project by running the following command:flutter run -d chrome --dart-define=use_simulated_environment=true
For more information, see the devtools_extensions package documentation.
The Flutter web app in this package is built and distributed as part of. package:shared_preferences. If there are changes to this tool that are ready to publish as part of shared_preferences, then the publish workflow for shared_preferences should follow these steps prior to publishing.
Build the DevTools extension and move the assets to shared_preferences.
cd shared_preferences_tool; flutter pub get; dart run devtools_extensions build_and_copy --source=. --dest=../shared_preferences/extension/devtools
Validate that shared_preferences is properly configured to distribute this extension.
cd shared_preferences_tool; dart run devtools_extensions validate --package=../shared_preferences
Publish shared_preferences as normal.