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