// // 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() }