We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26e16af commit 8d677e5Copy full SHA for 8d677e5
Sources/PulseUI/Helpers/TextRenderer.swift
@@ -447,13 +447,15 @@ struct ConsoleTextRenderer_Previews: PreviewProvider {
447
.previewLayout(.fixed(width: 1160, height: 2000)) // Disable interaction to view it
448
.previewDisplayName("HTML (Raw)")
449
450
+#if !os(tvOS)
451
WebView(data: html, contentType: "application/html")
452
.edgesIgnoringSafeArea([.bottom])
453
.previewDisplayName("HTML")
454
455
PDFKitRepresentedView(document: PDFDocument(data: try! TextUtilities.pdf(from: string))!)
456
.edgesIgnoringSafeArea([.all])
457
.previewDisplayName("PDF")
458
+#endif
459
}
460
461
0 commit comments