Post

Replies

Boosts

Views

Activity

Reply to Xcode 16 SwiftUI List Fast Scrolling Issue
Not sure if its related but I had a similar issue that was triggered because I was displaying a Text() element between the ForEach() and the Section() like ForEach(data) {header in Text(header) Section(){ } } Once I moved that Text() inside the Section() it worked like a charm.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’25
Reply to NavigationView scrolling broken when using TabView
Ok, changed it to struct ContentView: View { var body: some View { TabView{ Group{ List{ Text("Item 1") Text("Item 2") Text("Item 3") } } .tabItem { Image(systemName: "list.dash") Text("Transactions") } Group{ List{ Text("Item 11") Text("Item 12") Text("Item 13") } } .tabItem { Image(systemName: "list.dash") Text("Summary") } }.navigationTitle("Transactions") .navigationBarBackButtonHidden(true) } } and now it looks better but after switching to the other tab and back, its broken again (see clip below) https://imgur.com/a/BfiofU1
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’22