Cómo agregar OnPressed a un imitador de texto

new GestureDetector(
  onTap: () {
    Navigator.pushNamed(context, "myRoute");
  },
  child: new Text("my Title"),
);
Adventurous Anteater