This commit is contained in:
jantunesmesias 2024-08-06 13:58:38 -03:00
parent 2aff585c0c
commit 6188330b04
1 changed files with 3 additions and 1 deletions

View File

@ -135,6 +135,7 @@ class PreferencesPageModel with ChangeNotifier {
Navigator.pop(context); Navigator.pop(context);
}, },
options: FFButtonOptions( options: FFButtonOptions(
elevation: 0,
width: MediaQuery.of(context).size.width * 0.3, width: MediaQuery.of(context).size.width * 0.3,
height: MediaQuery.of(context).size.height * 0.05, height: MediaQuery.of(context).size.height * 0.05,
color: FlutterFlowTheme.of(context).primaryBackground, color: FlutterFlowTheme.of(context).primaryBackground,
@ -204,6 +205,7 @@ class PreferencesPageModel with ChangeNotifier {
ptText: 'Sim', ptText: 'Sim',
), ),
options: FFButtonOptions( options: FFButtonOptions(
elevation: 0,
width: MediaQuery.of(context).size.width * 0.3, width: MediaQuery.of(context).size.width * 0.3,
height: MediaQuery.of(context).size.height * 0.05, height: MediaQuery.of(context).size.height * 0.05,
color: FlutterFlowTheme.of(context).primaryBackground, color: FlutterFlowTheme.of(context).primaryBackground,
@ -219,7 +221,7 @@ class PreferencesPageModel with ChangeNotifier {
), ),
].divide(const SizedBox(width: 2)), ].divide(const SizedBox(width: 2)),
), ),
].divide(const SizedBox(width: 2)), ],
); );
}); });
notifyListeners(); notifyListeners();