自分用めも
push/pop じゃないナビゲーションが使いたい
Androidだと Intent.FLAG_ACTIVITY_CLEAR_TOP
とか使って実現するやつ。
pushAndRemoveUntilを使うといいらしい
child: new FlatButton(
onPressed: () {
Route routeToTop = new MaterialPageRoute(builder: (context) => new FirstScreen(data: "OK from Confirmation:$data"));
Navigator.of(context)
.pushAndRemoveUntil(routeToTop, (route) => false);
},
screenshot
参考
- https://gitter.im/flutter/flutter?at=5913f7e08a05641b116ea678
- https://tutel.me/c/programming/questions/46259751/register.html
おためしソース