Display app version in settings #204
This commit is contained in:
parent
5321b2b8d8
commit
cab7116d50
|
@ -134,6 +134,10 @@ struct SettingsTabs: View {
|
|||
NavigationLink(destination: SupportAppView()) {
|
||||
Label("settings.app.support", systemImage: "wand.and.stars")
|
||||
}
|
||||
|
||||
if let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String {
|
||||
Label("App Version: \(appVersion)", systemImage: "app.badge.checkmark")
|
||||
}
|
||||
}
|
||||
.listRowBackground(theme.primaryBackgroundColor)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue