another.im-ios/Monal/another.im/Views/RootView.swift

19 lines
379 B
Swift
Raw Normal View History

2024-11-18 14:53:52 +00:00
import SwiftUI
2024-11-19 14:05:25 +00:00
struct RootView: View {
2024-11-19 12:59:22 +00:00
@EnvironmentObject var wrapper: MonalXmppWrapper
2024-11-18 14:53:52 +00:00
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
2024-11-19 12:59:22 +00:00
.onAppear {
print("test")
}
2024-11-18 14:53:52 +00:00
}
}