Skip to content

Commit a16a0a6

Browse files
committed
Fixed overflow issue
1 parent 2c4e1d6 commit a16a0a6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.0
2+
3+
* Fixed overflow issue and increased version to 2.0.0
4+
15
## 1.3.0
26

37
* BREAKING CHANGE: Now you can use `FeatureManager.getInstance()` to get feature manager. Shared preferences initialization is inside now.

lib/src/presentation/feature_item.dart

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,11 @@ class _FeatureItemState extends State<_FeatureItem> {
117117
children: [
118118
Text(item.title, style: Theme.of(context).textTheme.bodyLarge),
119119
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+
),
129125
),
130126
],
131127
),

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Publish: flutter pub publish
33
name: feature_manager
44
description: Feature manager for developer preferences and experiments
5-
version: 1.3.0
5+
version: 2.0.0
66
repository: https://github.com/theRealGetman/feature-manager
77
issue_tracker: https://github.com/theRealGetman/feature-manager/issues
88

0 commit comments

Comments
 (0)