diff options
Diffstat (limited to 'Jel/Views/Library/Item/ItemInfoView.swift')
-rw-r--r-- | Jel/Views/Library/Item/ItemInfoView.swift | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Jel/Views/Library/Item/ItemInfoView.swift b/Jel/Views/Library/Item/ItemInfoView.swift index 103acf9..f682898 100644 --- a/Jel/Views/Library/Item/ItemInfoView.swift +++ b/Jel/Views/Library/Item/ItemInfoView.swift @@ -15,10 +15,14 @@ struct ItemInfoView: View { VStack(alignment: .leading) { HStack { Text((item.productionYear != nil) ? String(item.productionYear!) : "---") + .shadow(color: .black, radius: 1) Text("•") + .shadow(color: .black, radius: 1) Text(item.genres?.first ?? "---") + .shadow(color: .black, radius: 1) } Text(item.getRuntime() ?? "-:--") + .shadow(color: .black, radius: 1) } .font(.caption) } |