Skip to content

Instantly share code, notes, and snippets.

@pnalvarez
Created October 16, 2023 01:57
Show Gist options
  • Save pnalvarez/00ac5891cd259e2bdde37f31801cd246 to your computer and use it in GitHub Desktop.
Save pnalvarez/00ac5891cd259e2bdde37f31801cd246 to your computer and use it in GitHub Desktop.
import SwiftUI
struct ContentView: View {
var body: some View {
ZStack {
Rectangle()
.fill(.blue)
.frame(width: 200,
height: 200)
Rectangle()
.fill(.red)
.frame(width: 100,
height: 100)
Rectangle()
.fill(.green)
.frame(width: 50,
height: 50)
Spacer()
}
.padding(.horizontal, 20)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment