struct TestView: View {
var body: some View {
HStack{
Text("hello")
Text("world")
}
}
}
print(Mirror(reflecting: TestView().body))
struct TestView: View {
var body: some View {
HStack{
Text("hello")
Text("world")
}
}
}
print(Mirror(reflecting: TestView().body))