File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.0.0
2
+
3
+ * Fixed overflow issue and increased version to 2.0.0
4
+
1
5
## 1.3.0
2
6
3
7
* BREAKING CHANGE: Now you can use ` FeatureManager.getInstance() ` to get feature manager. Shared preferences initialization is inside now.
Original file line number Diff line number Diff line change @@ -117,15 +117,11 @@ class _FeatureItemState extends State<_FeatureItem> {
117
117
children: [
118
118
Text (item.title, style: Theme .of (context).textTheme.bodyLarge),
119
119
if (isWithDescription)
120
- Row (
121
- children: < Widget > [
122
- Text (
123
- item.description,
124
- style: Theme .of (context).textTheme.bodySmall? .copyWith (
125
- color: Colors .grey,
126
- ),
127
- ),
128
- ],
120
+ Text (
121
+ item.description,
122
+ style: Theme .of (context).textTheme.bodySmall? .copyWith (
123
+ color: Colors .grey,
124
+ ),
129
125
),
130
126
],
131
127
),
Original file line number Diff line number Diff line change 2
2
# Publish: flutter pub publish
3
3
name : feature_manager
4
4
description : Feature manager for developer preferences and experiments
5
- version : 1.3 .0
5
+ version : 2.0 .0
6
6
repository : https://github.com/theRealGetman/feature-manager
7
7
issue_tracker : https://github.com/theRealGetman/feature-manager/issues
8
8
You can’t perform that action at this time.
0 commit comments