본문 바로가기
Flutter

[Flutter] list add to first

by hymndaniel 2022. 4. 28.
List<String> list = ["B", "C", "D"];
list.insert(0, "A"); // at index 0 we are adding A
// list now becomes ["A", "B", "C", "D"]
 

 

Reference

https://stackoverflow.com/questions/57635916/insert-element-at-the-beginning-of-the-list-in-dart

 

Insert element at the beginning of the list in dart

I am just creating a simple ToDo App in Flutter. I am managing all the todo tasks on the list. I want to add any new todo tasks at the beginning of the list. I am able to use this workaround kind of

stackoverflow.com

 

728x90