I\'d like to supply an initial value to a text field and redraw it with an empty value to clear the text. What\'s the best approach to do that with Flutter\'s APIs?
TextEdittingController _controller = new TextEdittingController(text: "your Text");
or
@override void initState() { super.initState(); _Controller.text = "Your Text"; }