'Flutter/errro 대응' 카테고리의 글 목록 — Flutter Never Die

Flutter/errro 대응

    Flutter[플러터] - IOS 스플래쉬 검은화면 제거하기 feat .flutter_native_splash

    flutter_native_splash 패키지를 잘 쓰다가 스플래쉬 화면 이후 잠시 검은화면이 나오는걸 발견했다. 내 메인 코드는 아래처럼 이미 스플래쉬 제거 시점을 제대로 잡고 있었기에 Info.plist가 의심되어 한참을 삽질한 결과 ! void main() async { WidgetsBinding widgetsBinding = WidgetsFlutterBinding.ensureInitialized(); FlutterNativeSplash.preserve(widgetsBinding: widgetsBinding); // LocalStorage 초기화 await initializeLocalStorage(); await checkVersion(); // 애플리케이션 실행 runApp( P..

    [Flutter] - 플러터, ios 알림 권한 Permission.notification.status isDenied

    퍼미션 핸들러 패키지로 권한을 가져올 때 분명 설정 앱에서는 앱의 대한 알림이 켜져있는데 퍼미션은 계속 Denied로 뜰 때가 있다.Podfile을 수정해주자. ->         'PERMISSION_NOTIFICATIONS=1', 추가 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' con..

    [Flutter] 플러터 - IOS - Parse Issue (Xcode): Module 'app_links' not found

    https://stackoverflow.com/questions/76704862/generatedpluginregistrant-module-app-links-not-found GeneratedPluginRegistrant module "app_links" not foundWhen I try to build my flutter app for my iPhone through xcode I get this error enter image description here I've changed the iOS target to match in cocopods and In xcode but did not help, I've alsostackoverflow.comapp_links 란 종속성을 찾을 수 없다는 군......

    [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'] ||= [ ..

    [Flutter] 플러터 - Flutter xcodebuild: error: Unable to find a destination matching the provided destination specifier

    엑스코드 열기Runner 열기 (Root)Build Settings 진입 "supported platforms"  에서 Iphoneos 으로 되어있던 걸 iOS로 변경!

    [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. ..

    [Flutter] 플러터 -TabView - ListView 상단 여백 문제

    TabView안에 ListView.builder를 쓰는데 아래 사진과 같이 지정한 적 없는 여백이 있었다. 아무리 찾아도 따로 공간을 준적이 없기에 여러 삽질과 스택오버플로우를 뒤진결과 AppBar가 없는 Scaffold 내부에 ListView를 사용하면 자동으로 패딩이 들어간다는 것을 알게되었다.  해결법 리스트뷰 빌더 안에 명시적으로 써주자 ㅎㅎ Edgelnsets.zero를 써도 되나 좀 어색하기에 살짝 높이 패딩 주는게 좋다.