diff --git a/Memola/Features/Settings/About/AboutView.swift b/Memola/Features/Settings/About/AboutView.swift index 24682f0..cec9927 100644 --- a/Memola/Features/Settings/About/AboutView.swift +++ b/Memola/Features/Settings/About/AboutView.swift @@ -10,7 +10,7 @@ import SwiftUI struct AboutView: View { var body: some View { List { - Section { + Section("INFO") { HStack { Text("App Version") Spacer() @@ -20,6 +20,12 @@ struct AboutView: View { .listRowSeparator(.hidden) #endif } + Section("REPOSTORY") { + Text("https://github.com/dscyrescotti/Memola") + #if os(macOS) + .listRowSeparator(.hidden) + #endif + } Section("COPYRIGHT") { Text(Bundle.main.copyright) .font(.callout)