26 lines
442 B
Swift
26 lines
442 B
Swift
|
//
|
||
|
// ContentView.swift
|
||
|
// another.im
|
||
|
//
|
||
|
// Created by Wo It on 18.11.24.
|
||
|
// Copyright © 2024 monal-im.org. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
struct ContentView: View {
|
||
|
var body: some View {
|
||
|
VStack {
|
||
|
Image(systemName: "globe")
|
||
|
.imageScale(.large)
|
||
|
.foregroundStyle(.tint)
|
||
|
Text("Hello, world!")
|
||
|
}
|
||
|
.padding()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#Preview {
|
||
|
ContentView()
|
||
|
}
|