Commit 5f5245dd authored by Ian Hickson's avatar Ian Hickson

Merge pull request #798 from Hixie/popUntil

Navigator.popUntil
parents 2305d019 cf3077ea
......@@ -137,6 +137,12 @@ class Navigator extends StatefulComponent {
});
return returnValue;
}
static void popUntil(BuildContext context, Route targetRoute) {
openTransaction(context, (NavigatorTransaction transaction) {
transaction.popUntil(targetRoute);
});
}
static bool canPop(BuildContext context) {
NavigatorState navigator = context.ancestorStateOfType(NavigatorState);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment