Yattee v2 rewrite

This commit is contained in:
Arkadiusz Fal
2026-02-08 18:31:16 +01:00
parent 20d0cfc0c7
commit 05f921d605
1043 changed files with 163875 additions and 68430 deletions

View File

@@ -0,0 +1,23 @@
//
// VideoListStyle.swift
// Yattee
//
// List style options for video list views.
//
import SwiftUI
/// Style type for list layout in video views.
enum VideoListStyle: String, CaseIterable, Codable {
/// Inset style with card background, padding, and rounded corners
case inset
/// Plain style without card background, traditional list appearance
case plain
var displayName: LocalizedStringKey {
switch self {
case .inset: "viewOptions.listStyle.inset"
case .plain: "viewOptions.listStyle.plain"
}
}
}