전체 카테고리109 [Flutter] 플러터 - 바텀시트 텍스트 필드 깨짐 바텀시트 같은 경우에 빌드되는 컴포넌트 SingleChildScrollView를 선언해도 넣어도 우리가 원하는 모양이 아니다.바텀시트 같은 경우에 빌드되는 컴포넌트 SingleChildScrollView를 선언해도 넣어도 우리가 원하는 모양이 아니다.isScrollControlled 를 true하고 패딩값에 bottom 부분에 아래를 추가해주자. 원하는 결과가 나올 것이다.MediaQuery.of(context).viewInsets.bottom + 30.hpadding: EdgeInsets.only( left: 20.w, right: 20.w, top: 20.h, bottom: MediaQuery.of(context).viewInsets.bottom + 30.h), 2024. 6. 4. [Flutter] 플러터 - PopScope 뒤로가기 막기, 제어 WillPopScope Deprecated WillPopScope가 Deprecated 되면서 PopScope를 활용하면 된다.canPop -> bool 값에 따라 뒤로가기 가능 여부onPopInvoked : 뒤로가기 눌렀을 때 동작할 함수 2024. 5. 19. [Flutter] 플러터 - ios 권한 isDenied 권한을 분명 추가해줬고 승락도 했는데 계속해서 'isDenied' 이 뜨는 경우가 있다pod를 아래처럼 바꾸어주자 post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |config| config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64 i386' config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ .. 2024. 5. 10. [Flutter] 플러터 - Flutter xcodebuild: error: Unable to find a destination matching the provided destination specifier 엑스코드 열기Runner 열기 (Root)Build Settings 진입 "supported platforms" 에서 Iphoneos 으로 되어있던 걸 iOS로 변경! 2024. 5. 10. [Flutter] 플러터 - IconButton 크기 줄이기, IconButton에 기본 패딩 때메 난감했다. IconButton( padding: EdgeInsets.zero,); -> 실패 그렇다면 방법은?? 아래를 추가해주자.visualDensity: VisualDensity.compact, 2024. 5. 10. [Flutter] 플러터 - error: 'Flutter/Flutter.h' file not found when flutter run on iOS error: 'Flutter/Flutter.h' file not found when flutter run on iOSI don't know why but I can't build or run the App in my new Macbook, I run the same folder on another Mac or my windows computer and runs perfectly. here when I run flutter clean, I have to run pub...stackoverflow.comerror: 'Flutter/Flutter.h' file not found when flutter run on iOS 1. ios/Runner 폴더 복사해서 메모앱에 백업 파일 생성2. ios 폴더 삭제3. .. 2024. 5. 10. 이전 1 2 3 4 5 6 7 ··· 19 다음