[ FLUTTER ] 키보드가 위젯을 가리는 문제 해결방법 * resizeToAvoidBottomInset Scaffold( resizeToAvoidBottomInset: false, ... ) Scaffold( resizeToAvoidBottomInset: true, ... ) App/Flutter 거북 2021.10.22
[ FLUTTER ] Keyboard search and go TextFormField( textInputAction: TextInputAction.search, onFieldSubmitted: (value) { } onChanged: (value) { } ) onFielddSubmitted 이벤트를 사용할 것 App/Flutter HEON.D 2021.09.02
[ FLUTTER ] 키보드 포커스 이벤트 다음으로 포커스 TextFormField( ... textInputAction: TextInputAction.next, ... ) .continueAction .done .emergencyCall .go .join .newline .next .none .previous .route .search .send .unspecified App/Flutter HEON.D 2021.07.30
[ ANGULAR ] 전역 키보드 이벤트 import { HostListener } from '@angular/core'; @HostListener('document:keypress', ['$event']) handleKeyboardEvent(event: KeyboardEvent) { console.log(event.key); } FE/Angular HEON.D 2021.07.30