Posts

Post marked as Apple Recommended
I had the same problem and it was because iOS 15 seems to not support registering the same class for multiple element kinds. I made subclasses of the original class and registered each one for each kind and the crash fixed.
Post marked as solved
1 Replies
Hi,Change Toggle(isOn: self.meetingSetup.twitterEnabled)toToggle(isOn: $meetingSetup.twitterEnabled)
Post not yet marked as solved
11 Replies
To get a regular NavigationView on iPad just force the navigationViewStyle to .stack.NavigationView { VStack { Text("Hello World") }.navigationBarTitle(Text("Nav Title"))}.navigationViewStyle(.stack)