I have a Text widget
on pressing which another Route
has to be shown. But I could not see any onPressed() method for the Text widget
. Please Help.
Just wrap your title in a GestureDetector
to handle clicks. Then call Navigator
's pushNamed
to redirect to a new route.
new GestureDetector(
onTap: () {
Navigator.pushNamed(context, "myRoute");
},
child: new Text("my Title"),
);