-
-
Save sturdysturge/cde90bb7f46ae48cd4207cc9be2d0034 to your computer and use it in GitHub Desktop.
RevDoc scaleEffect
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
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