2023-12-12|閱讀時間 ‧ 約 1 分鐘

[Flutter]頁面切換

下一頁

沒傳資料

Navigator.push(context, MaterialPageRoute(builder: (context) => NewPage()));


有傳資料

Navigator.push(context, MaterialPageRoute(builder: (context) => NewPage(str:'123456')));


NewPage接收資料

//宣告參數
String str;

//接收傳遞參數
NewPage({Key key, this.str}) : super(key: key);


返回

Navigator.pop(context);





分享至
成為作者繼續創作的動力吧!
© 2024 vocus All rights reserved.