[Flutter] keyboard actions 바꾸기

gozero·2021년 7월 13일
0

  1. 다음 버튼 : 다음 텍스트 필드로 포커스 이동
TextField(
  maxLength: 10,
  textInputAction: TextInputAction.next,
)
  1. 완료 버튼 : 키보드가 자동으로 내려가며 포커스 해제
TextField(
  maxLength: 10,
  textInputAction: TextInputAction.done,
)
profile
Flutter를 제일 좋아하는 앱 프론트엔드 개발자입니다!

0개의 댓글