Hi all, I’m just getting started with SwiftUI.
I’ve got a List view wrapped in a navigation view, that displays a row for each item in a @State array, and a navigation bar item that displays another view when pressed. This second view takes a binding to the array as a parameter and appends a new item to it. The problem is that the List view appears to be reloading the entire array when a new row is added rather than just the new row. How can I prevent this?