@@ -128,7 +128,9 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
128
128
? Container (
129
129
key: Key ("Feeds are fetched" ),
130
130
decoration: BoxDecoration (
131
- border: Border .all (color: Colors .white38),
131
+ border: Border .all (
132
+ color: ThemeProvider .theme (widget.index)
133
+ .disabledColor),
132
134
borderRadius: BorderRadius .only (
133
135
topRight: Radius .circular (8 ),
134
136
topLeft: Radius .circular (8 ),
@@ -294,7 +296,9 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
294
296
height: 1 ,
295
297
width: double .infinity,
296
298
decoration: BoxDecoration (
297
- color: Colors .white12,
299
+ color: ThemeProvider .theme (
300
+ widget.index)
301
+ .dividerColor,
298
302
),
299
303
),
300
304
)
@@ -1392,7 +1396,9 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
1392
1396
? Container (
1393
1397
key: Key ("Rules Displayed" ),
1394
1398
decoration: BoxDecoration (
1395
- border: Border .all (color: Colors .white38),
1399
+ border: Border .all (
1400
+ color: ThemeProvider .theme (widget.index)
1401
+ .disabledColor),
1396
1402
borderRadius: BorderRadius .only (
1397
1403
topRight: Radius .circular (8 ),
1398
1404
topLeft: Radius .circular (8 ),
@@ -1616,7 +1622,9 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
1616
1622
height: 1 ,
1617
1623
width: double .infinity,
1618
1624
decoration: BoxDecoration (
1619
- color: Colors .white12,
1625
+ color: ThemeProvider .theme (
1626
+ widget.index)
1627
+ .dividerColor,
1620
1628
),
1621
1629
),
1622
1630
)
0 commit comments