feature_flags
feature_flags copied to clipboard
A Flutter package to manage feature flagging.
If a feature string is initialized in the `Feature` widget: ``` return Features( flags: [FEATURE_ADS], child: MaterialApp( ``` Then I add a `DebugFeatures` somewhere in the app: ``` ... ElevatedButton(...
`lib` and `example` dependencies updated to work with Flutter 2.10.4.
**Breaking change** Wouldn't it be better if `flags` would be a list of `Feature`, not just plain strings?