ひらひらと長いリストを使用しています。すべてのアイテムは正常にレンダリングされていますが、次のエラーも発生しています:
RangeError (index): Invalid value: Not in range 0..2, inclusive: 3
以下は私のコードです:
@override
Widget build(BuildContext context) {
return Container(
child: getList(),
);
}
以下は私のgetList()メソッドです:
Widget getList (){
List<String> list = getListItems();
ListView myList = new ListView.builder(itemBuilder: (context, index){
return new ListTile(
title: new Text(list[index]),
);
});
return myList;
}
そして、以下は私のgetListItem()メソッドです:
List<String> getListItems(){
return ["Faizan", "Usman", "Naouman"];
}
エラーのスクリーンショットは次のとおりです。
itemCount
パラメーターをListView.builder
に渡して、アイテム数を認識できるようにする必要があります
Widget getList() {
List<String> list = getListItems();
ListView myList = new ListView.builder(
itemCount: list.length,
itemBuilder: (context, index) {
return new ListTile(
title: new Text(list[index]),
);
});
return myList;
}