I am trying to loop through a list of colours. When the loop reaches the end I would like it to restart or go to the beginning of the list. Can someone help me I am new to Dart and flutter. Much appreciated!!! Thanks in advance.
List<Color> color = ['Red', 'yellow', 'pink', 'blue'];
So when it gets to blue , I'd like it to go back to Red is that possible. Please help.