Update:
Using an image and a text element embedded in a HStack works fine:
HStack {
		Image(systemName: "circle")
		Text(item)
}
Post
Replies
Boosts
Views
Activity
This is a multiplatform app (as described in Xcode), running on iOS 14 and macOS 11
If this is where you are creating your object and are only creating it once in a SwiftUI view, you should use the new @StateObject property wrapper.
Does this problem still persist if you use the following? Yes, it does
I must add, that when the list item is selected and the EditView is showing, the toolbar button also does not function, this is very odd
Does your view have any interactive views, or views that are backed by UIKit views?
If not, can you please submit a feedback with the sample project that's crashing? Thank you. It does have an interactive view, I just ported it over from my main project for some testing. I was aware that interactive elements 'weren't allowed'. But I wasn't aware that it caused a crash