The basic routing


RaisedButton (
Child: Text ( "jump to the search page"),
onPressed: (http://www.amjmh.com) {
Navigator.of (context) .push (
MaterialPageRoute (
Builder: (BuildContext context) {
return FormPage ( ); // this page needs to be introduced Import '../FormPage.dart';
}
)
);

},
Color: Theme.of (context) .accentColor,
textTheme: ButtonTextTheme.primary
)
--------- -------

Guess you like

Origin www.cnblogs.com/hyhy904/p/11402890.html