0

I want the views to look the same on iPad as they do on iPhone.

Currently it looks like this:

enter image description here

Harshil Patel
  • 1,318
  • 1
  • 7
  • 26

1 Answers1

2

Hard to say without any code, but I bet you need to add .navigationViewStyle(StackNavigationViewStyle()) to your NavigationView to not get it in split view mode on the iPad:

NavigationView {
  View1()
}.navigationViewStyle(StackNavigationViewStyle())
jnpdx
  • 45,847
  • 6
  • 64
  • 94