Post

Replies

Boosts

Views

Activity

Reply to ScrollViewReader's scrollTo may be broken on iOS 15
import SwiftUI struct ContentView: View {   var body: some View {       ScrollViewReader { proxy in           ScrollView {               VStack {                   Color.yellow                       .frame(height: 900)                   ScrollButton(proxy: proxy)                   Color.yellow                       .frame(height: 900)               }               .padding(.horizontal, 40)           }       }   } } struct ScrollButton: View {   let proxy: ScrollViewProxy   @Namespace var bottomId     var body: some View {         VStack {             Button("Scroll") {                 withAnimation {                     proxy.scrollTo(bottomId, anchor: .top)                                     }             }         }.id(bottomId)     } } struct ContentView_Previews: PreviewProvider {   static var previews: some View {     ContentView()   } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’21
Reply to Crash After Presenting SwiftUI Alert
have exact same issues. Did you manage to solve? @34534543456789098767654
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’24
Reply to SwiftUI StateObject crash: “failed to demangle witness for associated type 'Property’”
hi. I have couple crashes of this kind on iOS 15-16 devices. Do you guys experience this issue on iOS 17-18?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Macbook Pro crashing after updating to latest Xcode and mac OS. how do i resolve this ?
Same issue. XCode 13, 14. MacBook Pro (16-inch, 2019) 2.6 / 16. It will soon become 1 year since i first experienced this issue. Reported dozens of crash reports. Apple doesn't care..
Replies
Boosts
Views
Activity
Oct ’22
Reply to Kernel Panic with Xcode 13.3
Xcode 14Beta didn't help actually. Still crashing
Replies
Boosts
Views
Activity
Jun ’22
Reply to ScrollViewReader's scrollTo may be broken on iOS 15
import SwiftUI struct ContentView: View {   var body: some View {       ScrollViewReader { proxy in           ScrollView {               VStack {                   Color.yellow                       .frame(height: 900)                   ScrollButton(proxy: proxy)                   Color.yellow                       .frame(height: 900)               }               .padding(.horizontal, 40)           }       }   } } struct ScrollButton: View {   let proxy: ScrollViewProxy   @Namespace var bottomId     var body: some View {         VStack {             Button("Scroll") {                 withAnimation {                     proxy.scrollTo(bottomId, anchor: .top)                                     }             }         }.id(bottomId)     } } struct ContentView_Previews: PreviewProvider {   static var previews: some View {     ContentView()   } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’21
Reply to ScrollViewReader's scrollTo may be broken on iOS 15
I have the same issue but in horizontal direction
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’21