美文网首页
flutter导航的push 和present

flutter导航的push 和present

作者: Smallwolf_JS | 来源:发表于2020-01-05 15:31 被阅读0次

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

      本文链接:https://www.haomeiwen.com/subject/xutcactx.html