Android all done.
This commit is contained in:
@@ -101,13 +101,18 @@ abstract class BaseState<T extends StatefulWidget> extends State<T> {
|
||||
new Future.delayed(const Duration(milliseconds: 200), () {
|
||||
var route = new MaterialPageRoute<String>(builder: (BuildContext context) => new SettingsScreen(helper, app, false), fullscreenDialog: true);
|
||||
Navigator.of(context).push(route).then((token) {
|
||||
Navigator.of(context).pop(token);
|
||||
if (token != null) {
|
||||
Navigator.of(context).pop(token);
|
||||
}
|
||||
});
|
||||
});
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
pushRoute(context, new FAQScreen(helper, app, false));
|
||||
new Future.delayed(const Duration(milliseconds: 200), () {
|
||||
var route = new MaterialPageRoute<String>(builder: (BuildContext context) => new FAQScreen(helper, app), fullscreenDialog: true);
|
||||
Navigator.of(context).push(route);
|
||||
});
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
|
||||
Reference in New Issue
Block a user