27 lines
475 B
Swift
27 lines
475 B
Swift
|
//
|
||
|
// ContentView.swift
|
||
|
// ResumeBuilder
|
||
|
//
|
||
|
// Created by CH on 17.08.23.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct ContentView: View {
|
||
|
var body: some View {
|
||
|
VStack {
|
||
|
Image(systemName: "globe")
|
||
|
.imageScale(.large)
|
||
|
.foregroundColor(.accentColor)
|
||
|
Text("Hello, world!")
|
||
|
}
|
||
|
.padding()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct ContentView_Previews: PreviewProvider {
|
||
|
static var previews: some View {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|