Home > Mobile >  Flutter display value of Textfield in a Text Widget by typing
Flutter display value of Textfield in a Text Widget by typing

Time:04-19

I'm new to Flutter and curious how I can display the value of TextField in a Text widget without pressing a button. To be clearer with my question: When I type "hello" in the TextField, the text should also be "hello".

CodePudding user response:

The Flutter documentation has become pretty solid. The essential widgets like enter image description here

  • Related