Someone please tell me there is a way https://stackoverflow.com/questions/77466772/preserving-list-selection-when-you-have-selectable-items-that-are-contained-with #swiftui
@bardi the VStack will always be treated as a single row (it’s just a view after all).
Returning a ViewBuilder will allow for individually selectable subviews (provided they are tagged). Use a combination of listRowInsets and listRowSeperator to recreate the appearance the VStack gave you.
@phill you’re right, technically speaking the behaviour is expected.
Do you mean I replace the VStack with a ViewBuilder that will contain the subviews individually tagged?