본문 바로가기
Flutter

[Flutter] 플러터 - Drawer keyboard 키보드 올라옴 문제 Keyboard comes up when you open drawer

by s_hoonee 2024. 2. 17.
반응형

Drawer을 열 때 키보드가 올라오며 겹치는 경우가 있었다. 포커스 문제이니 드라워를 관리하는 화면에서 보통 onTap을 걸어서 포커스를 해제할텐데 그걸로는 부족하다. 아래 코드처럼 해주자.

"Keyboard comes up when you open drawer"

문제의 장면 해결!
Scaffold 에 onTap을 걸어 포커스 관리! 전 채팅화면이라 이렇게 했고 자신의 프젝에 맞게 사용하십시오

 

복붙을 위해 onTap 코드 첨부

 onTap: () {
        final FocusScopeNode currentscope = FocusScope.of(context);
        if (!currentscope.hasPrimaryFocus && currentscope.hasFocus) {
          FocusManager.instance.primaryFocus?.unfocus();
        }
      },