@@ -100,7 +100,7 @@ class _BottomFloatingMenuButtonState extends State<BottomFloatingMenuButton>
100
100
),
101
101
isScrollControlled: true ,
102
102
context: context,
103
- backgroundColor: ThemeProvider .theme.backgroundColor ,
103
+ backgroundColor: ThemeProvider .theme.primaryColorLight ,
104
104
builder: (context) {
105
105
return ListView (shrinkWrap: true , children: [
106
106
Padding (
@@ -128,13 +128,12 @@ class _BottomFloatingMenuButtonState extends State<BottomFloatingMenuButton>
128
128
height: 60 ,
129
129
width: double .infinity,
130
130
decoration: BoxDecoration (
131
- border: Border .all (color: Colors .white38),
132
- borderRadius: BorderRadius .only (
133
- topRight: Radius .circular (8 ),
134
- topLeft: Radius .circular (8 ),
135
- bottomLeft: Radius .circular (8 ),
136
- bottomRight: Radius .circular (8 ),
137
- ),
131
+ border: Border .all (
132
+ color: ThemeProvider .themeMode ==
133
+ ThemeMode .light
134
+ ? Colors .black38
135
+ : Colors .white38),
136
+ borderRadius: BorderRadius .circular (8 ),
138
137
color:
139
138
ThemeProvider .theme.primaryColorLight,
140
139
),
@@ -381,7 +380,7 @@ class _BottomFloatingMenuButtonState extends State<BottomFloatingMenuButton>
381
380
),
382
381
isScrollControlled: true ,
383
382
context: context,
384
- backgroundColor: ThemeProvider .theme.backgroundColor ,
383
+ backgroundColor: ThemeProvider .theme.primaryColorLight ,
385
384
builder: (context) {
386
385
return ListView (shrinkWrap: true , children: [
387
386
Padding (
0 commit comments