Post

Replies

Boosts

Views

Activity

Reply to SwiftUI Scrollview disable clipping
You can disable clipping with help of Introspect for SwiftUI https://github.com/siteline/SwiftUI-Introspect Using it you can get underlying UIKit objects. In your case simply add this to the ScrollView. ScrollView(.horizontal, showsIndicators: false) { //..... } .introspectScrollView { view in view.clipsToBounds = false }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Apr ’22
Reply to SwiftUI app crashes while scrolling section in List via ScrollViewReader
It looks like iOS 16 bug. When we have much more users with iOS 17, we are getting this crash report exclusively 100% for iOS 16 users in Crashlytics. Would be nice to have some simple workaround, but this crash is not happening extremely often, so we just live with it, iOS 16 is not that popular anymore.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’23
Reply to SwiftUI Sheet never releases object from memory on iOS 17
Don’t understand what do you mean
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to SwiftUI Sheet never releases object from memory on iOS 17
Will also add my SO question I've created earlier. Please upvote to bring more attention. Some newbies downvoted and it prevents the question from being found. https://stackoverflow.com/questions/77227252/swiftui-sheet-never-releases-object-from-memory
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to SwiftUI Scrollview disable clipping
You can disable clipping with help of Introspect for SwiftUI https://github.com/siteline/SwiftUI-Introspect Using it you can get underlying UIKit objects. In your case simply add this to the ScrollView. ScrollView(.horizontal, showsIndicators: false) { //..... } .introspectScrollView { view in view.clipsToBounds = false }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Apr ’22