Description
I would like to try the new runtime in my tvOS app. But it does not seem to be available there. Is that a mistake or is there a reason for it?
Provide a Repro
import SwiftUI
@_spi(RiveExperimental) import RiveRuntime
struct RiveExperimentalView: View {
var body: some View {
RiveUIView({
let worker = Worker()
let file = File(source: .local("my_file", Bundle.main))
return try await Rive(file: file)
}).view()
}
}
#Preview {
RiveExperimentalView()
}
Screenshots
Expected behavior
I would expect the samples in the documentation to work, or the documentation mention that it's not available for tvOS
Device & Versions
- Device: tvOS Simulator
- tvOS version tvOS 26.3
- Rive SDK version: 6.15.2
Additional context