flutter导航的push 和present

push

Navigator.of(context).push(MaterialPageRoute(builder: (context)=> thirdPage("222222"))),

present

Navigator.of(context).push(MaterialPageRoute(fullscreenDialog: true,builder: (context)=> thirdPage("222222"))),

之间的区别就是
fullscreenDialog: true,

你可能感兴趣的:(flutter导航的push 和present)