remove hiding hte label if its empty

This commit is contained in:
neon443
2025-08-16 10:31:37 +01:00
parent d7f498c164
commit 700c169e55

View File

@@ -15,10 +15,7 @@ struct HostSymbolPreview: View {
var body: some View {
if small {
HStack(alignment: .center, spacing: 5) {
if !label.isEmpty {
Text(label)
.font(.headline)
}
symbol.image
.resizable().scaledToFit()
.symbolRenderingMode(.monochrome)
@@ -32,7 +29,6 @@ struct HostSymbolPreview: View {
symbol.image
.resizable().scaledToFit()
.symbolRenderingMode(.monochrome)
if !label.isEmpty {
Text(label)
.font(.headline)
.offset(symbol.offset)
@@ -40,7 +36,6 @@ struct HostSymbolPreview: View {
}
}
}
}
#Preview {
HostSymbolPreview(symbol: HostSymbol.desktopcomputer, label: "lo0")