Last active
February 18, 2020 02:08
-
-
Save drumnkyle/8da86fa3ae4972c14a1ac833a02e3e52 to your computer and use it in GitHub Desktop.
Multiple Previews
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 ContentView_Previews: PreviewProvider { | |
static var previews: some View { | |
Group { | |
ContentView() | |
.environment(\.sizeCategory, | |
.accessibilityLarge) | |
ContentView() | |
.environment(\.sizeCategory, | |
.accessibilityExtraExtraLarge) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment