feat: fine tune about view

This commit is contained in:
dscyrescotti
2024-11-14 14:11:12 +07:00
parent 306d6a6dce
commit 3d2834c85e
@@ -10,7 +10,7 @@ import SwiftUI
struct AboutView: View { struct AboutView: View {
var body: some View { var body: some View {
List { List {
Section { Section("INFO") {
HStack { HStack {
Text("App Version") Text("App Version")
Spacer() Spacer()
@@ -20,6 +20,12 @@ struct AboutView: View {
.listRowSeparator(.hidden) .listRowSeparator(.hidden)
#endif #endif
} }
Section("REPOSTORY") {
Text("https://github.com/dscyrescotti/Memola")
#if os(macOS)
.listRowSeparator(.hidden)
#endif
}
Section("COPYRIGHT") { Section("COPYRIGHT") {
Text(Bundle.main.copyright) Text(Bundle.main.copyright)
.font(.callout) .font(.callout)