RangeError (index): Invalid value: Valid value range is empty: 0 color – Flutter
It is a text editing app. I want to change my text color. I can't figure out what the error is. List<TextInfo> texts = []; int currentIndex = 0; changeTextColor(Color color) { setState(() { texts[currentIndex].color = color; //it works });…