mirror of
https://github.com/yattee/yattee.git
synced 2026-05-13 19:05:03 +00:00
Increase tvOS queue row spacing for focus halo breathing room
This commit is contained in:
@@ -184,7 +184,7 @@ struct QueueManagementSheet: View {
|
|||||||
String(localized: "queue.section.previously"),
|
String(localized: "queue.section.previously"),
|
||||||
count: history.count
|
count: history.count
|
||||||
)
|
)
|
||||||
VStack(spacing: 8) {
|
VStack(spacing: 20) {
|
||||||
ForEach(Array(history.enumerated()), id: \.element.id) { index, historyItem in
|
ForEach(Array(history.enumerated()), id: \.element.id) { index, historyItem in
|
||||||
QueueItemRow(
|
QueueItemRow(
|
||||||
queuedVideo: historyItem,
|
queuedVideo: historyItem,
|
||||||
@@ -222,7 +222,7 @@ struct QueueManagementSheet: View {
|
|||||||
String(localized: "queue.section.upNext"),
|
String(localized: "queue.section.upNext"),
|
||||||
count: queue.count
|
count: queue.count
|
||||||
)
|
)
|
||||||
VStack(spacing: 8) {
|
VStack(spacing: 20) {
|
||||||
ForEach(Array(queue.enumerated()), id: \.element.id) { index, queuedVideo in
|
ForEach(Array(queue.enumerated()), id: \.element.id) { index, queuedVideo in
|
||||||
QueueItemRow(
|
QueueItemRow(
|
||||||
queuedVideo: queuedVideo,
|
queuedVideo: queuedVideo,
|
||||||
|
|||||||
Reference in New Issue
Block a user