본문 바로가기

# 02/Flutter

[Flutter] Bluetooth Keyboard Error!!

반응형

flutter 2.2.0 버전 이후부터!!

 

안드로이드 삼성 폰에서 flutter 앱을 실행 후 블루투스 키보드를 연결하고 텍스트를 입력하면

 

키보드가 올라갔다 내려갔다 하는 이상한 버그를 확인 할 수 있다!!

 

https://github.com/flutter/flutter/issues/95697

 

[Android][Bluetooth Keyboard] The software keyboard repeatedly opens and closes while typing with bluetooth keyboard. · Issue #

The software keyboard is repeatedly open and close when I type characters with bluetooth keyboard. I have Samsung Galaxy S20 and iPhone 11, and the problem is only appears in Galaxy S20. I'm no...

github.com

 

해당 버그는 위의 링크에서 확인 할 수 있다.

 

음 일단 코드 상으로 해결해보려고 했지만 찾지 못했고!

 

디바이스에서 키보드 설정을 변경해주면 잘 입력되는 것을 확인할 수 있다.

 

 

https://github.com/flutter/flutter/issues/70546

 

RawKeyboardListener triggers soft keyboard on Android · Issue #70546 · flutter/flutter

This was spun off from #67915. On Android, RawKeyboardListener triggers the soft keyboard when it receives input. This only happens after a TextField has received focus once. Until a TextField has ...

github.com

 

반응형