mirror of
https://github.com/yattee/yattee.git
synced 2024-12-22 13:33:42 +00:00
Disable RefreshControl on iOS 16
Causes crashes
This commit is contained in:
parent
5bfdc2c79b
commit
d8bd3ef50c
@ -17,7 +17,10 @@ struct RefreshControlModifier: ViewModifier {
|
||||
}
|
||||
|
||||
func body(content: Content) -> some View {
|
||||
content
|
||||
if #available(iOS 16.0, macOS 13.0, tvOS 16.0, *) {
|
||||
return content
|
||||
} else {
|
||||
return content
|
||||
.background(
|
||||
GeometryReader { geometry in
|
||||
ScrollViewMatcher(
|
||||
@ -34,6 +37,7 @@ struct RefreshControlModifier: ViewModifier {
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
extension View {
|
||||
func refreshControl(onValueChanged: @escaping (_ refreshControl: UIRefreshControl) -> Void) -> some View {
|
||||
|
Loading…
Reference in New Issue
Block a user