diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2024-10-21 23:51:06 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2024-10-21 23:51:06 -0600 |
commit | 05cf4dd46aebfaa7812989c88eb91d303a43d3e7 (patch) | |
tree | 6cf0542910c72f8135345facbcf39a8eb409d97e /iTexSnip/Views/PreferencesView.swift | |
parent | c343140bcf9862b7b4b0d465b67e51eb42f45008 (diff) |
bruh
Diffstat (limited to 'iTexSnip/Views/PreferencesView.swift')
-rw-r--r-- | iTexSnip/Views/PreferencesView.swift | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/iTexSnip/Views/PreferencesView.swift b/iTexSnip/Views/PreferencesView.swift index 81a7d38..98eb4b9 100644 --- a/iTexSnip/Views/PreferencesView.swift +++ b/iTexSnip/Views/PreferencesView.swift @@ -9,10 +9,8 @@ import SwiftUI struct PreferencesView: View { var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + Text("Where are my preferences?!") + .padding() + .frame(width: 300, height: 200) } } - -#Preview { - PreferencesView() -} |