1. (사용할 곳 어딘가에) TextField() 위젯을 생성
...
TextFiled()
...
2. TextField 위젯에 넣을 컨트롤러 생성
var textFieldEditingController = TextFieldEditingController();
3. 위의 콘트롤러를 TextField 위젯에 넣기
TextField(controller: textFieldEditingController);
4. TextFiledEditingController 의 text 함수에 텍스트를 넣으면 된다.
textFieldEditingController.text = '입력하고자 하는 텍스트';
반응형
'Dev > Flutter' 카테고리의 다른 글
Flutter - TextFormField (0) | 2023.11.22 |
---|---|
Flutter - Could not build the precompiled application for the device (0) | 2023.11.10 |
Flutter SpeechToText 에서 한국어 설정 (0) | 2023.10.24 |
Flutter TTS Support Voice & Language (0) | 2023.10.24 |
XCode 15 에서 iOS17 앱 빌드가 실패하는 이슈 (0) | 2023.10.12 |