I am using a long list in flutter. All the items are rendering fine but also following error :
RangeError (index): Invalid value: Not in range 0..2, inclusive: 3
Following is my code :
@override
Widget build(BuildContext context) {
return Container(
child: getList(),
);
}
Following is my getList() method :
Widget getList (){
List<String> list = getListItems();
ListView myList = new ListView.builder(itemBuilder: (context, index){
return new ListTile(
title: new Text(list[index]),
);
});
return myList;
}
And following is my getListItem() method:
List<String> getListItems(){
return ["Faizan", "Usman", "Naouman"];
}
Following is the screenshot of error :
question from:
https://stackoverflow.com/questions/53967624/flutter-error-rangeerror-index-invalid-value-not-in-range-0-2-inclusive 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…