Post

Replies

Boosts

Views

Activity

There is a bug when scrolling through the Swift UI List in version iOS 15.2.
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?
0
0
1.1k
Nov ’21
Could not upload due to macOS error.
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?
Replies
1
Boosts
0
Views
515
Activity
Feb ’22
There is a bug when scrolling through the Swift UI List in version iOS 15.2.
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?
Replies
0
Boosts
0
Views
1.1k
Activity
Nov ’21