updated new flutter version
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user