Created
December 19, 2020 21:29
-
-
Save arkilis/074ac811d97397f159ba2ae48380c131 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
struct PurchaseButtonView_Previews: PreviewProvider { | |
static var previews: some View { | |
VStack { | |
PurchaseButtonView(title: "Buy") { | |
print("Buy button clicked") | |
}.padding() | |
PurchaseButtonView(title: "Sell") { | |
print("Buy button clicked") | |
}.padding() | |
} | |
.previewLayout(.fixed(width: 350, height: 200)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment