This commit is contained in:
jantunesmesias 2024-08-06 13:56:45 -03:00
parent a5255f4f06
commit 2aff585c0c
1 changed files with 93 additions and 86 deletions

View File

@ -122,6 +122,10 @@ class PreferencesPageModel with ChangeNotifier {
: 'Are you sure you want to receive your access notifications?'),
),
actions: [
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
mainAxisSize: MainAxisSize.max,
children: [
FFButtonWidget(
text: FFLocalizations.of(context).getVariableText(
enText: 'No',
@ -164,7 +168,8 @@ class PreferencesPageModel with ChangeNotifier {
),
style: TextStyle(
color: FlutterFlowTheme.of(context).info)),
backgroundColor: FlutterFlowTheme.of(context).success,
backgroundColor:
FlutterFlowTheme.of(context).success,
duration: const Duration(seconds: 3),
behavior: SnackBarBehavior.floating,
shape: RoundedRectangleBorder(
@ -212,7 +217,9 @@ class PreferencesPageModel with ChangeNotifier {
borderRadius: BorderRadius.circular(10),
),
),
],
].divide(const SizedBox(width: 2)),
),
].divide(const SizedBox(width: 2)),
);
});
notifyListeners();