[ FLUTTER ] 앱 번들 빌드 flutter build appbundle https://flutter-ko.dev/docs/deployment/android Android 앱 출시 준비하기 Flutter 앱을 개발하는 동안, 커멘드 라인에서의 `flutter run`을 실행하거나IDE에 있는 툴바 **Run** 과 **Debug**를 선택하여 앱을 테스트할 수 있습니다. Flutter는 기본적으로 앱의 _debug_ 버전을 빌드합니 flutter-ko.dev App/Flutter HEON.D 2021.08.28
[ FLUTTER ] Another exception was thrown: Incorrect use of ParentDataWidget. https://stackoverflow.com/questions/54905388/incorrect-use-of-parent-data-widget-expanded-widgets-must-be-placed-inside-flex incorrect use of parent data widget. expanded widgets must be placed inside flex widgets I am getting the following error: i.e.., Another exception was thrown: Incorrect use of ParentDataWidget. showing error on the mobile screen. @override Widget build(BuildContext contex.. App/Flutter HEON.D 2021.08.22
[ FLUTTER ] GetX Transition fade, fadeIn, rightToLeft, leftToRight, upToDown, downToUp, rightToLeftWithFade, leftToRightWithFade, zoom, topLevel, noTransition, cupertino, cupertinoDialog, size, native App/Flutter HEON.D 2021.08.19
[ 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
[ 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
[ 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