Created
January 23, 2020 02:56
-
-
Save drumnkyle/f2d65ace67d04ad6ed678f2c0adb74f7 to your computer and use it in GitHub Desktop.
SwiftUI Previews for All Configurations
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(title: "Small Title") | |
ContentView(title: "Longer Title to Make Sure It Works") | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment