Last active
April 24, 2020 14:37
-
-
Save jobedylbas/29b787e8a3f25c939254bbf490dc5979 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
struct AnimatedImage: View { | |
@State private var image: Image? | |
private let imageNames: [String] | |
var body: some View { | |
image? | |
.resizable() | |
.scaledToFit() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment