@@ -241,7 +241,7 @@ class _VxDialog extends StatelessWidget {
241
241
child: Container (
242
242
height: 42 ,
243
243
decoration: BoxDecoration (
244
- color: cancelBgColor ?? Theme .of (context).colorScheme.background ,
244
+ color: cancelBgColor ?? Theme .of (context).colorScheme.surface ,
245
245
borderRadius: BorderRadius .vertical (
246
246
bottom: Radius .circular (_circular),
247
247
),
@@ -257,7 +257,7 @@ class _VxDialog extends StatelessWidget {
257
257
onTap: () => onCancel (context),
258
258
child: Container (
259
259
decoration: BoxDecoration (
260
- color: cancelBgColor ?? Theme .of (context).colorScheme.background ,
260
+ color: cancelBgColor ?? Theme .of (context).colorScheme.surface ,
261
261
borderRadius: BorderRadius .only (
262
262
bottomLeft: Radius .circular (_circular),
263
263
),
@@ -277,7 +277,7 @@ class _VxDialog extends StatelessWidget {
277
277
onTap: () => onConfirm (context),
278
278
child: Container (
279
279
decoration: BoxDecoration (
280
- color: confirmBgColor ?? Theme .of (context).colorScheme.background ,
280
+ color: confirmBgColor ?? Theme .of (context).colorScheme.surface ,
281
281
borderRadius:
282
282
BorderRadius .only (bottomRight: Radius .circular (_circular)),
283
283
),
@@ -365,7 +365,7 @@ class VxTimerButtonState extends State<VxTimerButton> {
365
365
Widget child = Container (
366
366
height: 42 ,
367
367
decoration: BoxDecoration (
368
- color: widget.bgColor ?? Theme .of (context).colorScheme.background ,
368
+ color: widget.bgColor ?? Theme .of (context).colorScheme.surface ,
369
369
borderRadius: BorderRadius .vertical (
370
370
bottom: Radius .circular (_circular),
371
371
),
0 commit comments