๐ฐDebugging in SwiftUI
// let/var statements in ViewBuilder
struct ContentView: View {
var body: some View {
let _ = print("Update body") // โญ๏ธ
Text("Hello, World!")
}
}Sarunw โฉ How to do print debugging in SwiftUI
Last updated
Was this helpful?