Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created July 5, 2020 13:11
Show Gist options
  • Save sturdysturge/cde90bb7f46ae48cd4207cc9be2d0034 to your computer and use it in GitHub Desktop.
Save sturdysturge/cde90bb7f46ae48cd4207cc9be2d0034 to your computer and use it in GitHub Desktop.
RevDoc scaleEffect
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Rectangle()
.frame(width: 50, height: 50)
.scaleEffect()
Rectangle()
.frame(width: 50, height: 50)
.scaleEffect(x: 2)
}
.frame(width: 350, height: 600)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment