File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -1262,7 +1262,10 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
1262
1262
),
1263
1263
Container (
1264
1264
decoration: BoxDecoration (
1265
- border: Border .all (color: Colors .white38),
1265
+ border: Border .all (
1266
+ color:
1267
+ ThemeProvider .theme (widget.index)
1268
+ .disabledColor),
1266
1269
borderRadius: BorderRadius .only (
1267
1270
topRight: Radius .circular (8 ),
1268
1271
topLeft: Radius .circular (8 ),
@@ -1339,8 +1342,10 @@ class _RSSFeedHomePageState extends State<RSSFeedHomePage>
1339
1342
.infinity,
1340
1343
decoration:
1341
1344
BoxDecoration (
1342
- color: Colors
1343
- .white12,
1345
+ color: ThemeProvider .theme (
1346
+ widget
1347
+ .index)
1348
+ .dividerColor,
1344
1349
),
1345
1350
),
1346
1351
)
Original file line number Diff line number Diff line change @@ -41,6 +41,8 @@ class MyThemes {
41
41
),
42
42
),
43
43
highlightColor: Color (0xff415062 ),
44
+ disabledColor: Colors .white38,
45
+ dividerColor: Colors .white12,
44
46
);
45
47
static final lightTheme = ThemeData (
46
48
brightness: Brightness .light,
@@ -69,5 +71,7 @@ class MyThemes {
69
71
),
70
72
),
71
73
highlightColor: Color (0xff415062 ),
74
+ disabledColor: Colors .black38,
75
+ dividerColor: Colors .black12,
72
76
);
73
77
}
You can’t perform that action at this time.
0 commit comments