Skip to content

Instantly share code, notes, and snippets.

@Eggers-CGI
Eggers-CGI / ChapterArtwork.swift
Created May 7, 2025 08:42
BUG: Apple tvOS - flickering chapters when using artwork image in LIVE-Streams
import SwiftUI
import AVKit
struct Chapter: Identifiable {
let id = UUID()
let title: String
let seconds: Double
var artworkData: Data?
}