updated new flutter version

This commit is contained in:
2022-06-30 03:47:47 -04:00
parent f504e213a0
commit bcf21d90ac
50 changed files with 360 additions and 2638 deletions

View File

@@ -405,7 +405,7 @@ class MobileMeState extends State<MobileMe> {
S.of(context).feature_not_available_web,
),
actions: [
FlatButton(
TextButton(
onPressed: () {
Routes.router.pop(context);
},
@@ -679,15 +679,19 @@ class MobileMeState extends State<MobileMe> {
title: Text(S.of(context).warning),
content: Text(S.of(context).email_needed),
actions: <Widget>[
FlatButton(
TextButton(
child: Text(S.of(context).cancel),
onPressed: () {
Navigator.of(context).pop();
},
),
RaisedButton(
color: Theme.of(context).primaryColor,
textColor: Colors.white,
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Theme.of(context).primaryColor,
textStyle: TextStyle(
color: Colors.white,
),
),
child: Text(S.of(context).ok),
onPressed: () {
Navigator.of(context).pop();