another.im-ios/Monal/another.im/ContentView.swift

26 lines
442 B
Swift
Raw Normal View History

2024-11-18 14:53:52 +00:00
//
// 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()
}