반응형 error28 [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] RangeError (index): Invalid value: Not in inclusive range 0..1: 2 문제 상황 배열에 접근하고자 했으나, 아래와 같은 에러메시지가 발생합니다. RangeError (index): Invalid value: Not in inclusive range 0..1: 2 해결 방법 접근할 때 문제가 되었던 배열의 크기보다 작은 인덱스 값으로만 접근해야 합니다. https://www.google.com/search?q=RangeError+(index)%3A+Invalid+value%3A+Not+in+inclusive+range+0..1%3A+2&rlz=1C1IBEF_koKR957KR957&oq=RangeError+(index)%3A+Invalid+value%3A+Not+in+inclusive+range+0..1%3A+2&aqs=chrome..69i57.553j0j7&sourceid=.. 2022. 1. 24. [flutter] Shader compilation error 문제 상황 flutter 버전 업그레이드 이후부터 프로젝트 앱 빌드시 Shader compilation error를 포함한 에러가 여러번 호출되는 문제가 있었습니다. 해결 방법 flutter 버전을 다운그레이드 하는 방법 flutter run --enable-software-rendering 명령을 이용하여 다시 빌드하는 방법 안드로이드 에뮬레이터의 하드웨어 가속을 disable하는 방법 필자는 flutter run --enable-software-rendering 명령으로 문제를 해결했습니다. https://www.google.com/search?q=Shader+compilation+error&oq=Shader+compilation+error&aqs=chrome..69i57j0j0i30l2j0i5i30.. 2021. 11. 21. [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 ··· 3 4 5 6 7 다음 반응형