본문 바로가기
반응형

dart10

[Solved][Flutter] static variable must initialized in dart [Flutter] static variable must initialized in dart 문제 상황 (Problem) static BannerAd _banner; 위와 같이 변수를 선언하면 최신 버전 dart에서 초기화를 하지 않아 에러가 발생한다. 일반 변수라면 late키워드를 붙여서 해결할 수 있지만, static 변수는 late를 붙일 수 없다. 그렇다면 어떻게 해결해야 할까? [English](If you declare a variable like this An error occurs because it is not initialized in the latest version of dart. If it is a general variable, it can be solved by attaching.. 2023. 7. 30.
[Flutter][Solved] The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' [Flutter][Solved] The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' 문제 상황 (Problem) Scaffold의 appBar에 Widget을 대입하면, 아래와 같은 빌드 에러가 발생한다. [English](If Widget is assigned to Scaffold's appBar, the following build error occurs.) The argument type 'Widget' can't be assigned to the parameter type 'PreferredSizeWidget?' 해결 방법 (Solution) Widget을 반환하는 대신에 Preferred.. 2023. 7. 28.
[flutter] How to fix the error "'WhereIterable<Products>' is not a subtype of type 'List<Products>'" 문제 상황 flutter 앱 실행 중에 아래와 같은 에러메시지가 표시되고 빌드에 실패합니다. How to fix the error "'WhereIterable' is not a subtype of type 'List'" 해결 방법 아래와 같이 리스트로 변환하여 복사합니다. List filter(String title) { return products.where((element) => element.category == title).toList(); } https://www.google.com/search?q=Unhandled+Exception%3A+type+%27WhereIterable%3CStore%3E%27+is+not+a+subtype+of+type+%27List&rlz=1C1IBEF_koKR957.. 2022. 1. 25.
[flutter] Fix screen rotation (vertical, horizontal) (화면 회전 고정 (세로 고정, 가로 고정)) 문제 상황 (a problem situation) 폰의 화면 회전 여부에 상관없이 세로 또는 가로로 화면을 고정하여 앱을 사용하고 싶습니다. (I want to use the app by fixing the screen vertically or horizontally regardless of whether the phone rotates.) 해결 방법 (how to solve) 필요 패키지 적용 import 'package:flutter/services.dart'; main.dart에 아래와 같이 코드 적용 void main(){ WidgetsFlutterBinding.ensureInitialized(); SystemChrome.setPreferredOrientations( [DeviceOrientati.. 2021. 12. 30.
반응형