The limitation to 10 is effectively a very serious limitation of SwiftUI. But you can use Group and even Groups in Groups So the number of items is unlimited in fact: ```     Group { // level 2          Group { // level 1 // 10 links 1-10 }          Group { // 10 links 11-20 } // Repeat for 10 Group          Group { // 10 links 91-100 } } ``` With this construct you can have 100 links. Add a higher level of Group to reach 1000 ``` Group { // level 3     Group { // level 2          Group { // level 1 // 10 links 1-10 }          Group { // 10 links 11-20 } // Repeat for 10 Group          Group { // 10 links 91-100 } }     Group { // level 2          Group { // level 1 // 10 links 101-110 }          Group { // 10 links 111-120 } // Repeat for 10 Group          Group { // 10 links 191-200 } } // Repeat 10 times for level 2 Group     Group { // level 2          Group { // level 1 // 10 links 901-110 }          Group { // 10 links 911-920 } // Repeat for 10 Group          Group { // 10 links 991-1000 } } } ``` A bit tedious, but this will work.