基本路由


RaisedButton(
child: Text("跳转到搜索页面"),
onPressed: (http://www.amjmh.com){
Navigator.of(context).push(
MaterialPageRoute(
builder: (BuildContext context){
return FormPage(); // 需要引入这个页面 import '../FormPage.dart';
}
)
);

},
color: Theme.of(context).accentColor,
textTheme: ButtonTextTheme.primary
)
————————————————

posted @ 2019-08-23 22:03  水至清明  阅读(116)  评论(0编辑  收藏  举报