Created
July 10, 2021 07:08
-
-
Save muukii/69259c97d2b2b2b6276ec311937d8708 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let backgroundView = UIView.mock(backgroundColor: .neon(.violet)) | |
let box1 = UIView.mock(backgroundColor: .neon(.red), preferredSize: .largeSquare) | |
let box2 = UIView.mock(backgroundColor: .neon(.yellow), preferredSize: .largeSquare) | |
view.mondrian.buildSubviews { | |
HStackBlock(spacing: 10) { | |
box1 | |
box2 | |
} | |
.padding(10) | |
.background(backgroundView) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment