Skip to content

Commit 0442a4b

Browse files
committed
fix lable text overflow in RSSFeedHomePage
1 parent f512b90 commit 0442a4b

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

lib/Components/RSSFeedHomePage.dart

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,11 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
152152
Expanded(
153153
child: Row(
154154
children: [
155-
Text(model
156-
.RssFeedsList[index].label
157-
.toString()),
155+
Flexible(
156+
child: Text(model
157+
.RssFeedsList[index].label
158+
.toString()),
159+
),
158160
SizedBox(width: 10),
159161
Text(model.RssFeedsList[index]
160162
.count !=
@@ -1318,9 +1320,11 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
13181320
Expanded(
13191321
child: Row(
13201322
children: [
1321-
Text(model
1322-
.RssRulesList[index].label
1323-
.toString()),
1323+
Flexible(
1324+
child: Text(model
1325+
.RssRulesList[index].label
1326+
.toString()),
1327+
),
13241328
SizedBox(width: 10),
13251329
Text(model.RssRulesList[index]
13261330
.count !=

0 commit comments

Comments
 (0)