[ 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
[ FLUTTER ] non_constant_identifier_names 1. pubspec.yaml 작성 dev_dependencies: effective_dart: ^1.2.0 2. analysis_options.yaml 파일 생성 linter: rules: non_constant_identifier_names : false App/Flutter HEON.D 2021.06.28
[ FLUTTER ] GetX https://pub.dev/packages/get get | Flutter Package Open screens/snackbars/dialogs without context, manage states and inject dependencies easily with GetX. pub.dev 라우터 컨트롤 Get.to(NextScreen()); Get.toNamed('/details'); Get.back(); Get.off(NextScreen()); Get.offAll(NextScreen()); 추가 API // give the current args from currentScreen Get.arguments // give name of previous route Get.previousRoute // gi.. App/Flutter HEON.D 2021.06.25
[ Plugins ] SweatAlert2 배경 닫기 방지 키워드 prevent backdrop dismiss 증상 배경화면 클릭시 닫기 방지, ESC 버튼 클릭시 닫기 방지 관련 URL https://stackoverflow.com/questions/47749095/prevent-sweetalert-to-be-closed-on-clicking-outside-the-popup-window 해결책 allowOutsideClick: false, allowEscapeKey: false, FE/Plugins 라넌.B 2021.06.18