feature_manager 3.0.1
feature_manager: ^3.0.1 copied to clipboard
Feature manager for developer preferences and experiments
3.0.1 #
- Export for
src/utils/extensions.dart
to make extensions publicly accessible.
3.0.0 #
- Added a new wrapper for typed features. Instead of creating a generic Feature class, you can now use specific types:
BooleanFeature
,TextFeature
,IntegerFeature
,DoubleFeature
, andJsonFeature
. - Introduced a new annotation for use with the
feature_manager_generator
.
2.0.0 #
- Fixed overflow issue and increased version to 2.0.0
1.3.0 #
- BREAKING CHANGE: Now you can use
FeatureManager.getInstance()
to get feature manager. Shared preferences initialization is inside now.
1.2.1 #
- Updated dependencies
1.2.0 #
- Removed
bloc
and providerdependencies
- Changed FeatureManager initialization. Now it's required to call
FeatureManager.initialize()
function to providesharePreferences
forFeatureManager
. Otherwise it would crash.
1.1.2 #
- Upgraded Dart and Flutter versions
1.1.1 #
- Updated Readme
1.1.0 #
- BREAKING: now you need to provide SharedPreferences instance to create feature manager
- Added sync calls for FeatureManager
- Added additional getters for FeatureManger
- Added json type for Feature
1.0.0 #
- Initial release of Feature Manager