Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 296 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 296 Bytes

.

import SwiftUI

struct NewView: View {
    @ViewBuilder
    var body: some View {
        if Int.random(in: 1...99) > 55 {
            Text("Hallelujah?")
        } else {
            Color.red
                .frame(width: 100, height: 100)
        }
    }
}

Editted: 2/13/2020