Skip to content

Commit a2535b9

Browse files
authored
Merge pull request #231 from amitamrutiya2210/issue-196-theme-issue
fixed RSS-Feed's browse feeds theme issue
2 parents fbb05b2 + d2c494f commit a2535b9

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

lib/Components/RSSFeedHomePage.dart

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1266,7 +1266,10 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
12661266
),
12671267
Container(
12681268
decoration: BoxDecoration(
1269-
border: Border.all(color: Colors.white38),
1269+
border: Border.all(
1270+
color:
1271+
ThemeProvider.theme(widget.index)
1272+
.disabledColor),
12701273
borderRadius: BorderRadius.only(
12711274
topRight: Radius.circular(8),
12721275
topLeft: Radius.circular(8),
@@ -1343,8 +1346,10 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
13431346
.infinity,
13441347
decoration:
13451348
BoxDecoration(
1346-
color: Colors
1347-
.white12,
1349+
color: ThemeProvider.theme(
1350+
widget
1351+
.index)
1352+
.dividerColor,
13481353
),
13491354
),
13501355
)

0 commit comments

Comments
 (0)