我递归地向导航器添加路由。可能会有20多次浏览。弹出按照广告中的方式工作,但是我想弹出到索引1并删除所有的推送历史记录。有没有办法将这个 pop 命令替换为... rereturn to Index0..。
new ListTile(
title: new RaisedButton(
child: new Text("POP"),
onPressed: () {
var route = new MaterialPageRoute(
builder: (BuildContext context) =>
new NextPage3(value:"hi there from 3"),
);
Navigator.pop(context);
},
),
),