diff --git a/lib/ui/widgets/smart_widgets/bottom_sheets/bottom_sheet_setup.dart b/lib/ui/widgets/smart_widgets/bottom_sheets/bottom_sheet_setup.dart index 1e48ec3..473118e 100644 --- a/lib/ui/widgets/smart_widgets/bottom_sheets/bottom_sheet_setup.dart +++ b/lib/ui/widgets/smart_widgets/bottom_sheets/bottom_sheet_setup.dart @@ -85,7 +85,7 @@ class _FloatingBoxBottomSheet extends StatelessWidget { fontWeight: FontWeight.bold), ), ), - FlatButton( + ElevatedButton( onPressed: () => model.response(completer, textFieldController1.text), child: Text( @@ -93,7 +93,9 @@ class _FloatingBoxBottomSheet extends StatelessWidget { style: TextStyle( color: Colors.white, fontWeight: FontWeight.bold), ), - color: Theme.of(context).primaryColor, + style: ElevatedButton.styleFrom( + foregroundColor: Theme.of(context).primaryColor + ), ) ], )