Answers for "flutter onclick show text in textfield"

3

text on click flutter

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

flutter textfield events

TextField(
  onChanged: (text) {
    print('First text field: $text');
  },
),
Posted by: Guest on July-10-2021

Code answers related to "flutter onclick show text in textfield"

Browse Popular Code Answers by Language