🔰Debugging in SwiftUI
// let/var statements in ViewBuilder
struct ContentView: View {
var body: some View {
let _ = print("Update body") // ⭐️
Text("Hello, World!")
}
}
Last updated
Was this helpful?
// let/var statements in ViewBuilder
struct ContentView: View {
var body: some View {
let _ = print("Update body") // ⭐️
Text("Hello, World!")
}
}
Last updated
Was this helpful?