반응형
질문
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?
답변
당신은 TextField
대신 TextFormField
을 사용하고 initialValue
속성을 사용할 수 있습니다. 예를 들어
TextFormField(initialValue: "I am smart")
반응형
댓글