Add App Icon changer

This commit is contained in:
naturecodevoid
2023-02-15 18:52:42 -08:00
parent 38c0a8a9a3
commit 8b8e471c97
94 changed files with 677 additions and 33 deletions

View File

@@ -33,7 +33,7 @@ struct SettingsView: View {
@State var externalURLToShow: URL?
let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? ""
let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "Unknown"
var body: some View {
List {
@@ -150,6 +150,10 @@ struct SettingsView: View {
}
Section {
NavigationLink(L10n.AppIconsView.title) {
AppIconsView()
}
NavigationLink("Show Error Log") {
ErrorLogView()
}