반응형 개발28 [flutter] Change app icon (Android, iPhone) (앱 아이콘 변경하기 (안드로이드, 아이폰)) [flutter] Change app icon (Android, iPhone) 앱 아이콘 변경하기 앱 아이콘 파일 만들기(Create an app icon file) 앱 아이콘으로 만들고 싶은 이미지를 가지고 아래 사이트로 들어간다. (Go to the site below with the image you want to make as an app icon.) https://appicon.co/ App Icon Generator appicon.co 아래와 같이 왼쪽 사각형에 이미지파일을 끌어다 놓고 우측 하단의 Generate 버튼을 누르면 갖가지 이미지 파일들이 생성된다. (Drag and drop the image file to the left rectangle as shown below Click t.. 2022. 6. 5. [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] How to hold the bottom of the widget (위젯의 하단 고정 방법) [flutter] How to hold the bottom of the widget [flutter] 위젯의 하단 고정 방법 문제 상황 (a problem situation) 위젯을 UI화면의 하단에 고정하고 싶습니다. (I want to fix the widget to the bottom of the UI screen.) body: Column( children: [ Body(), Container( height: 50, child: AdWidget( ad: _banner, ), ), ], ), 해결 방법 (Workaround) 하단에 고정하고자 하는 위젯 호출 전에 Spacer()를 호출합니다. (Call Spacer() before calling the widget you want to pin to.. 2021. 11. 20. [flutter] Unimplemented handling of missing static target 문제 상황 빌드를 하려는데 Unimplemented handling of missing static target 에러가 뜹니다. 해결 방법 flutter clean 후, flutter run하면 해결됩니다. > android studio ide에서 flutter clean 방법 https://studiodoc.tistory.com/21 2021. 11. 17. 이전 1 ··· 4 5 6 7 다음 반응형