mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 05:19:13 +00:00
fix teststring textbox in fontsmanager
This commit is contained in:
@@ -27,8 +27,6 @@ struct ShhShellApp: App {
|
||||
hostsManager: hostsManager,
|
||||
keyManager: keyManager
|
||||
)
|
||||
.colorScheme(hostsManager.selectedTheme.background.luminance > 0.5 ? .light : .dark)
|
||||
.tint(hostsManager.tint)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -78,6 +78,9 @@ struct ContentView: View {
|
||||
}
|
||||
.scrollContentBackground(.hidden)
|
||||
}
|
||||
|
||||
.colorScheme(hostsManager.selectedTheme.background.luminance > 0.5 ? .light : .dark)
|
||||
.tint(hostsManager.tint)
|
||||
.navigationTitle("ShhShell")
|
||||
.toolbar {
|
||||
ToolbarItem(placement: .confirmationAction) {
|
||||
|
||||
@@ -53,13 +53,15 @@ struct FontManagerView: View {
|
||||
.font(.custom(fontName, size: 15))
|
||||
.bold(selected)
|
||||
.opacity(selected ? 1 : 0.8)
|
||||
.contentTransition(.numericText())
|
||||
.animation(.default, value: testLine)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Section("Test String") {
|
||||
TextEditor(text: $testLine)
|
||||
TextField("", text: $testLine)
|
||||
.fixedSize()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -39,4 +39,7 @@ struct HostSymbolPreview: View {
|
||||
|
||||
#Preview {
|
||||
HostSymbolPreview(symbol: HostSymbol.desktopcomputer, label: "lo0")
|
||||
.border(.red)
|
||||
HostSymbolPreview(symbol: HostSymbol.laptopcomputer, label: "lo1", horizontal: true)
|
||||
.border(.blue)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user