fix teststring textbox in fontsmanager

This commit is contained in:
neon443
2025-08-17 17:47:25 +01:00
parent 4f9055b58f
commit ce11f18455
4 changed files with 9 additions and 3 deletions

View File

@@ -27,8 +27,6 @@ struct ShhShellApp: App {
hostsManager: hostsManager, hostsManager: hostsManager,
keyManager: keyManager keyManager: keyManager
) )
.colorScheme(hostsManager.selectedTheme.background.luminance > 0.5 ? .light : .dark)
.tint(hostsManager.tint)
} }
} }
} }

View File

@@ -78,6 +78,9 @@ struct ContentView: View {
} }
.scrollContentBackground(.hidden) .scrollContentBackground(.hidden)
} }
.colorScheme(hostsManager.selectedTheme.background.luminance > 0.5 ? .light : .dark)
.tint(hostsManager.tint)
.navigationTitle("ShhShell") .navigationTitle("ShhShell")
.toolbar { .toolbar {
ToolbarItem(placement: .confirmationAction) { ToolbarItem(placement: .confirmationAction) {

View File

@@ -53,13 +53,15 @@ struct FontManagerView: View {
.font(.custom(fontName, size: 15)) .font(.custom(fontName, size: 15))
.bold(selected) .bold(selected)
.opacity(selected ? 1 : 0.8) .opacity(selected ? 1 : 0.8)
.contentTransition(.numericText())
.animation(.default, value: testLine)
} }
} }
} }
} }
Section("Test String") { Section("Test String") {
TextEditor(text: $testLine) TextField("", text: $testLine)
.fixedSize() .fixedSize()
} }
} }

View File

@@ -39,4 +39,7 @@ struct HostSymbolPreview: View {
#Preview { #Preview {
HostSymbolPreview(symbol: HostSymbol.desktopcomputer, label: "lo0") HostSymbolPreview(symbol: HostSymbol.desktopcomputer, label: "lo0")
.border(.red)
HostSymbolPreview(symbol: HostSymbol.laptopcomputer, label: "lo1", horizontal: true)
.border(.blue)
} }