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. Plea
Text widget
Route
Just wrap your title in a GestureDetector to handle clicks. Then call Navigator's pushNamed to redirect to a new route.
GestureDetector
Navigator
pushNamed
new GestureDetector( onTap: () { Navigator.pushNamed(context, "myRoute"); }, child: new Text("my Title"), );