-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
Labels
frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.platform-androidAndroid applications specificallyAndroid applications specifically
Description
I am trying to test the WillPopScope here is the example code:
showDialog(context: context,
child: new WillPopScope(
onWillPop: () async => false,
child: new AlertDialog(
title: new Text("Pass!"),
content: new Markdown(
data: "You Pass"),
actions: [
new FlatButton(
child: new Text("Continue"),
onPressed: () {
goto(nextPage);
})
]
))
);The expected behavior is that I can't dismiss the dialog. Yet I can
From debugging here is the route being set in WillPopScopeState
_DialogRoute("null", animation: AnimationController(▶ 0.000; for _DialogRoute))
Metadata
Metadata
Assignees
Labels
frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.platform-androidAndroid applications specificallyAndroid applications specifically