Si la declaración Swiftui
var myBool: Bool = true
if myBool == true {
// myBool is true here
}
else {
// myBool is false here
}
Beautiful Bug
var myBool: Bool = true
if myBool == true {
// myBool is true here
}
else {
// myBool is false here
}