[ 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
[ FLUTTER ] 최초 1회만 Build하기 장점: 최초 실행시 1회만 Build를 하므로 탭바를 이동하고 다시 돌아오더라도 화면을 다시 뿌려주는 번거로움을 덜어주며 페이지를 다시 불러올때 로딩속도가 향상된다. class GoodsFilterTab extends StatefulWidget { @override _GoodsFilterTabState createState() => _GoodsFilterTabState(); } class _GoodsFilterTabState extends State with AutomaticKeepAliveClientMixin{ @override bool get wantKeepAlive => true; @override Widget build(BuildContext context) { super.build(context.. App/Flutter 거북 2021.07.14
[ FLUTTER ] Margin Padding 수치 모든 영역 ( 4방향 ) EdgeInsets.all(10.0) 단방향 ( 위아래 / 좌우 ) EdgeInsets.symmetric(vertical: 10.0) 한쪽 면 EdgeInsets.only(left: 10.0) 시계방향 – 왼쪽부터 시계방향으로 순서대로 적용 EdgeInsets.fromTRB(30.0, 10.0, 50.0, 20.0) App/Flutter HEON.D 2021.07.09
[ FLUTTER ] 키보드 아웃포커스 GestureDetector( onTap: () { FocusScope.of(context).unfocus(); }, child : App() ); App/Flutter HEON.D 2021.07.08
[ FLUTTER ] Hot Key 필수키 r / R / h / c / i / p / o / v / P Flutter run key commands. 리프레시 r Hot reload. 🔥🔥🔥 Hard 리프레시 R Hot restart. 헬프메세지 표시 h Repeat this help message. Run 종료 d Detach (terminate "flutter run" but leave application running). 콘솔클리어 c Clear the screen 앱 종료 및 Run 종료 q Quit (terminate the application on the device). 스크린샷 s Save a screenshot to flutter.png. 다크모드 b Toggle the platform brightness setting .. App/Flutter HEON.D 2021.07.08
[ iOS ] 디바이스 에뮬레이터 구동 // 디바이스 지정 xcrun simctl list open -a Simulator --args -CurrentDeviceUDID // 단순실행 open -a simulator 카테고리 없음 HEON.D 2021.07.07
[ FLUTTER ] 페이지 이동시 렌더링 페인트 오류 크롬 디버깅시 창 크기가 커지면 에러 발생 해결법 개발자 모드에서 디바이스 창 크기 고정 카테고리 없음 HEON.D 2021.07.01