Flutter 에서 검색을 처리하다보니 할 필요가 생겨서 알게된 것을 첨부합니다.
TextField(
textInputAction: TextInputAction.go,
onSubmitted: (value) async {
addressListCnt = 0;
gisObjList = [];
_textEditingController.text = value;
await fnGetLatLon(_textEditingController.text);
}
위의 코드 처럼 textInputAction : TextInputAction.go 를 넣어주고
onSubmitted를 사용하면 간단하게 엔터키 이벤트 처리가 가능합니다.
Flutter Clipboard 기능 (0) | 2021.05.14 |
---|---|
Flutter Textfield autofocus (flutter 텍스트필드 포커스) (0) | 2021.05.14 |
How to Add Back Button at App Bar with Flutter (0) | 2021.05.06 |
Flutter type test Operators(flutter type 비교 연산자) (0) | 2021.05.04 |
Mac Sqlite Browser tool (0) | 2021.05.04 |