From 3d2834c85e2ee0786cdf02c2461dcd42aec52523 Mon Sep 17 00:00:00 2001 From: dscyrescotti Date: Thu, 14 Nov 2024 14:11:12 +0700 Subject: [PATCH] feat: fine tune about view --- Memola/Features/Settings/About/AboutView.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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)