added a quick font manager/selector

added selectfont, savefont
updated loadfonts
fix swipeaction tint color for hosts
This commit is contained in:
neon443
2025-07-06 19:40:52 +01:00
parent 4a98e3e4c9
commit bc24edd13c
6 changed files with 94 additions and 17 deletions

View File

@@ -30,6 +30,19 @@ struct ContentView: View {
keyManager: keyManager
)
Section() {
NavigationLink {
ThemeManagerView(hostsManager: hostsManager)
} label: {
Label("Themes", systemImage: "swatchpalette")
}
NavigationLink {
FontManagerView(hostsManager: hostsManager)
} label: {
Label("Fonts", systemImage: "textformat")
}
}
NavigationLink {
KeyManagerView(hostsManager: hostsManager, keyManager: keyManager)
} label: {