There were no problems with the deployment until the previous version.
But after adding the package, when I validate it, I get an error. The upload also fails. Because of this, we are unable to distribute macOS apps. Any solution?
Post
Replies
Boosts
Views
Activity
Run the above code in iOS 15.2 version.
Quickly scroll through the list item.
The top navigation area overlaps with the Section title area.
There is no improvement in overlapping or narrowing the gap with the navigation title.
example code :
import SwiftUI
struct ContentView: View {
var body: some View {
NavigationView {
List {
Section("Section") {
ForEach(0..<1000) { i in
Text("\(i)")
}
}
}
.navigationBarTitleDisplayMode(.large)
.navigationTitle(Text("Navi"))
}
}
}
Will this be solved in the next version?