Dev 309

Flutter - Cannot provide both a color and a decorationTo provide both, use "decoration: BoxDecoration(color: color)".

오류 Cannot provide both a color and a decoration To provide both, use "decoration: BoxDecoration(color: color)". 'package:flutter/src/widgets/container.dart': Failed assertion: line 270 pos 15: 'color == null || decoration == null' 이유 Container 위젯 안에 색 설정이 중복으로 들어가서 발생한 오류이기에, BoxDecoration 에서만 배경색을 설정하면 된다. 잘못된 형식 Container( decoration: BoxDecoration( color: Colors.red, ... ), ... color: Colors...

Dev/Error 2023.11.24

Flutter - ../../../.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/src/constructable_file_system_event.dart:7:57: Error: The class 'FileSystemEvent' can't be extended, implemented, or mixed in outside of its library because it's a sealed class.

오류 ../../../.pub-cache/hosted/pub.dev/watcher-1.0.2/lib/src/constructable_file_system_event.dart:7:57: Error: The class 'FileSystemEvent' can't be extended, implemented, or mixed in outside of its library because it's a sealed class. Dart 을 업그레이드 해주니 해결 dart pub upgrade 해결 : https://github.com/dart-lang/sdk/issues/52570 Watcher fails with `class 'FileSystemEvent' can't be extended`, for dart, no..

Dev/Error 2023.11.24

JetpackCompose - SplashScreen API

과업 정의 : - 스플래시 스크린은 3초 유지하면서 로고는 애니메이션 처리 한다. 1. 라이브러리 추가 implementation("androidx.core:core-splashscreen:1.1.0-alpha02") 2. 컴파일 버전 맞추기 android { compileSdk = 34 ... } Dependency 'androidx.core:core-splashscreen:1.1.0-alpha02' requires libraries and applications that depend on it to compile against version 34 or later of the Android APIs. 3. Splash 화면을 위한 Theme 에서 스타일 적용 기본 themes.xml android 31..

Dev/Android 2023.11.16

Flutter - Could not build the precompiled application for the device

Could not build the precompiled application for the device. Error (Xcode): Sandbox: rsync.samba(79798) deny(1) file-write-create /.../build/ios/Debug-iphoneos/Flutter.framework Error (Xcode): Sandbox: dart(79778) deny(1) file-write-create /.../build/ios/Debug-iphoneos/.last_build_id Error (Xcode): Flutter failed to write to a file at "/.../build/ios/Debug-iphoneos/.last_build_id". Xcode15 이상으로 업..

Dev/Flutter 2023.11.10

Flutter TextField 에 텍스트 입력하는 방법

1. (사용할 곳 어딘가에) TextField() 위젯을 생성 ... TextFiled() ... 2. TextField 위젯에 넣을 컨트롤러 생성 var textFieldEditingController = TextFieldEditingController(); 3. 위의 콘트롤러를 TextField 위젯에 넣기 TextField(controller: textFieldEditingController); 4. TextFiledEditingController 의 text 함수에 텍스트를 넣으면 된다. textFieldEditingController.text = '입력하고자 하는 텍스트';

Dev/Flutter 2023.10.27

Flutter SpeechToText 에서 한국어 설정

Flutter 에서 말(speaking)을 문자로 변환하기 위해서 SpeechToText 라이브러리를 사용했다. 개발자들이 제일 많이 사용하는 라이브러리인것 같다. Google 에서 Cloud 상에서 제공하는 기능이 있지만 유료기에 일단 패스. 기본 설정 SpeechToText speechToText = SpeechToText(); ... var available = await speechToText.initialize(); if (available) { ... speechToText.listen(onResult: (result) { ... }, localeId: 'ko-KR'); } 기본 언어가 영어이기 때문에 영어를 사용한다면 localeId 가 없어도 된다. speechToText.listen(on..

Dev/Flutter 2023.10.24

XCode 15 에서 iOS17 앱 빌드가 실패하는 이슈

오류 Error (Xcode): Sandbox: rsync.samba(37827) deny(1) file-write-create /.../StudioProjects/mvp_english_by_gpt/build/ios/Debug-iphonesimulator/Flutter.framework 1. 해당 프로젝트를 Xcode 로 연다. 2. 왼쪽 사이드바에서 Runner 를 선택한다. 3. Runner 창 에서 TARGETS 에서 Runner 를 선택한다. 4. "Build Settings" 탭을 선택한다. 5. 해당 탭 영역의 탐색창에서 "ENABLE_USER_SCRIPT_SANDBOXING" 검색해서 찾는다. 6. ENABLE_USER_SCRIPT_SANDBOXING 해당 키의 값이 "No" 그렇다면 비활성..

Dev/Flutter 2023.10.12