WIP
This commit is contained in:
parent
a5255f4f06
commit
2aff585c0c
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue