Fixes macOS compilation
This commit is contained in:
parent
c15b9fc224
commit
2d64238c2d
|
@ -1,6 +1,7 @@
|
||||||
import SwiftUI
|
import SwiftUI
|
||||||
import SwiftBackports
|
import SwiftBackports
|
||||||
|
|
||||||
|
#if os(iOS)
|
||||||
public extension Backport where Wrapped: View {
|
public extension Backport where Wrapped: View {
|
||||||
func focused<Value>(_ binding: Binding<Value?>, equals value: Value) -> some View where Value: Hashable {
|
func focused<Value>(_ binding: Binding<Value?>, equals value: Value) -> some View where Value: Hashable {
|
||||||
wrapped.modifier(FocusModifier(focused: binding, value: value))
|
wrapped.modifier(FocusModifier(focused: binding, value: value))
|
||||||
|
@ -128,4 +129,4 @@ private extension View {
|
||||||
background(WillDisappearHandler(onWillDisappear: perform))
|
background(WillDisappearHandler(onWillDisappear: perform))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue