Skip to content

Commit

Permalink
Fix broken looks of Text on iOS/macOS
Browse files Browse the repository at this point in the history
Broken by missing conditional in .scrollableOnTV() from #943
  • Loading branch information
keeshux committed Nov 26, 2024
1 parent 4d84bd1 commit dec58b5
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,16 @@ extension View {
}

public func scrollableOnTV() -> some View {
#if os(tvOS)
// focusable()
Button {
//
} label: {
self
}
#else
self
#endif
}
}

Expand Down

0 comments on commit dec58b5

Please sign in to comment.