SwiftUI NavigationView on the iPad Pro

前端 未结 6 839
伪装坚强ぢ
伪装坚强ぢ 2020-12-28 13:09

I use the Apple SwiftUI tutorial code. Then I set the previewDevice to iPad Pro (12.9-inch). But the preview has something wrong. Does anyone know where the problem is?

6条回答
  •  独厮守ぢ
    2020-12-28 13:22

    In my case what make the difference was using StackNavigationViewStyle and no padding were needed.

    NavigationView {
      ...
    }
    .navigationViewStyle(StackNavigationViewStyle())
    

提交回复
热议问题