Answers for "flutter when i click a button show one text"

3

text on click flutter

new GestureDetector(
  onTap: () {
    Navigator.pushNamed(context, "myRoute");
  },
  child: new Text("my Title"),
);
Posted by: Guest on May-19-2021

Code answers related to "flutter when i click a button show one text"

Browse Popular Code Answers by Language