diff options
Diffstat (limited to 'code/app-ios/Storage/ContentView.swift')
| -rw-r--r-- | code/app-ios/Storage/ContentView.swift | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/code/app-ios/Storage/ContentView.swift b/code/app-ios/Storage/ContentView.swift new file mode 100644 index 0000000..132dfd7 --- /dev/null +++ b/code/app-ios/Storage/ContentView.swift @@ -0,0 +1,25 @@ +// +// ContentView.swift +// Storage +// +// Created by Ivar Løvlie on 14/11/2022. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundColor(.accentColor) + Text("Hello, world!") + } + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} |
