Last active
November 14, 2019 23:50
-
-
Save fermoya/394badf100681e3a539d7e8ca658d362 to your computer and use it in GitHub Desktop.
This file contains 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
ZStack() { | |
if self.isPresented { | |
ForEach(self.wallet.cards) { card in | |
CardView(card: card) | |
/* | |
... Setting up the view ... | |
*/ | |
} | |
} | |
}.padding(.horizontal, Self.padding) | |
.onAppear { self.isPresented.toggle() } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment