Framework/Flutter8 [Flutter] Error: Xcode 16 업데이트 후 발생하는 에러 에러 문구 Stored properties cannot be marked potentially unavailable with '@available 빌드한 코드 public class UserScript : WKUserScript { var groupName: String? // 에러 부분 @available(iOS 14.0, *) lazy var contentWorld: WKContentWorld = WKContentWorld.page ... } 에러 이유 Xcode 16으로 버전 업데이트 진행 후 flutter를 iOS로 빌드하면 발생하는 오류다. @available를 인식못하는 오류가 있다. 그래서 임시 방편으로 아래의 코드를 추가하면 정상적으로 실행된다. 에러 해결 방안 private var _co.. 2022. 12. 19. [Error] flutter_svg 플러그인의 url(’#pattern’) 예외 상황 에러 에러 메시지 ======== Exception caught by SVG =================================================================== The following assertion was thrown while parsing AssetBundlePictureKey(bundle: PlatformAssetBundle#17ec6(), name: "assets/images/mood_absurd.svg", colorFilter: null, theme: SvgTheme(currentColor: Color(0xff000000), fontSize: 14.0, xHeight: 7.0)) in _getDefinitionPaint: Failed to find defin.. 2022. 11. 30. [Flutter] RemoteConfig 값을 runApp 전에 가져올 때 생기는 에러 에러 문구 W/FirebaseRemoteConfig(17442): Could not update ABT experiments. W/FirebaseRemoteConfig(17442): com.google.firebase.abt.AbtException: The Analytics SDK is not available. Please check that the Analytics SDK is included in your app dependencies. W/FirebaseRemoteConfig(17442): at com.google.firebase.abt.FirebaseABTesting.throwAbtExceptionIfAnalyticsIsNull(FirebaseABTesting.java:342) W/Firebas.. 2022. 11. 28. Dart 기초 문법 (1) Main 함수 void main() { print('Hello Wolrd'); } main 함수는 앱이 시작되는 곳, 즉 처음에 호출되는 함수이다. main 함수에 작성된 코드는 순서대로 실행된다. Variables 데이터를 저장하는 장소 변수명 앞에 데이터 타입을 지정하지 않고 var 키워드를 선언하면 저장된 데이터에 따라서 타입이 지정된다. void main() { var name= 'Hello world'; var year = 1977; var list = ['hello', 'kim', 'world']; } 변수 타입 int 형 int value = 10; double 형 double value = 29.2; String 형 String value = ‘Hello Kim’; boolean 형 boo.. 2022. 10. 30. 이전 1 2 다음