반응형 해결33 [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] Incorrect use of ParentDataWidget. 문제 상황 Expanded위젯을 다른 위젯에 감싸면서 Incorrect use of ParentDataWidget. 에러 발생했습니다. 해결 방법 Expanded 위젯으로는 간격을 줄 수 있는 위젯이 정해져있다는 것을 인지하지 못했습니다. Expanded 위젯으로 감쌀 수 있는 위젯은 오직 Column, Row, Flex 위젯만 가능합니다. 2021. 11. 15. [flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) [flutter] Copying a list (deep copy) (리스트를 복사하기(깊은 복사)) List.from을 이용해서 복사하면 깊은 복사가 이루어진다. [English](Copying using List.from makes a deep copy.) this.reviews = List.from(reviews); https://stackoverflow.com/questions/63091889/flutter-firebase-get-array-from-firestore-and-assign-it-to-a-list flutter firebase get array from Firestore and assign it to a list I have a collection in Firestore. It has .. 2021. 11. 1. 이전 1 ··· 5 6 7 8 9 다음 반응형