flutter IOS ERROR 처리 방법

 1. Error (Xcode): could not build module 'CoreFoundation' flutter clean flutter pub get cd ios pod install 2-2. Mac (M1): ❶ 터미널을 열고 관리자 모드로  ffi  설치 (Mac 비번 입력) : sudo arch -x86_64 gem install ffi ❷  arch -x86_64 pod install --repo-update  로 업데이트 실행 ❸  flutter clean  으로 비워준 후 다시  flutter run  으로 재실행 3.  pod repo remove trunk  로 실행 삭제 - 끝 -

flutter ios device no connect error

 [!] Xcode - develop for iOS and macOS     ✗ Xcode installation is incomplete; a full installation is necessary for iOS development.       Download at: https://developer.apple.com/xcode/download/       Or install Xcode via the App Store.       Once installed, run:         sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer         sudo xcodebuild -runFirstLaunch     • CocoaPods version 1.11.3

flutter webview scroll 안되는 경우 gestureRecognizers: gestureRecognizers, 추가 해서 되었다

  final Set<Factory> gestureRecognizers = [Factory(() => EagerGestureRecognizer())].toSet();<b></b></i>     return new Scaffold(       //   title: appTitle,       body: new NestedScrollView(         headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled) {           return <Widget>[             headerNavCal(context),           ];         },         // controller: _scrollController,         body: Builder(builder: (BuildContext context) {           return WebView(             initialUrl: 'https://www.naver.com/',             javascriptMode: JavascriptMode.unrestricted,            <b> gestureRecognizers: gestureRec...

putty 한글 깨질때

이미지

flutter string

 flutter string 을 var 형태로 사용 하는 경우 null 을 전달 하기 위해서는 toString() 사용 한다

flutter 영역에 맞추어 제스추어 동작 빈공간이라도 가능

  GestureDetector는 그 child로 아무리 큰 Container를 잡아도 최종 실제 위젯의 크기만큼만 터치범위가 설정된다. GestureDetector( . . behavior: HitTestBehavior.translucent, . . ) 따라서 이렇게 translucent속성을 통해 child의 크기 전부 터치 범위로 지정해줄 수 있다.
 mysql subquery 사용시 서브퀴리안에 where 절에 서버 퀴리를 사용 하는 경우 속도 저하가 있다 where 절의 서버퀴리를 조인으로 처리 하여 받아서 메인절에 처리 하면 된다. select             (SELECT -- (select ----) ) AAAAA from tb_ _--> 변경후 select           (SELECT -- (tb_b) ) AAAAA from tb_a, tb_b