Last active
June 6, 2020 02:41
-
-
Save aheze/8bfd7f4b70f2eaf1cadb301b52cccc77 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 ContentView: View { | |
| var body: some View { | |
| /// add the image | |
| Image("background0") | |
| /// we make it fit the screen | |
| .resizable() | |
| .aspectRatio(contentMode: .fit) | |
| } | |
| } | |
| /// for Xcode's live preview | |
| struct ContentView_Previews: PreviewProvider { | |
| static var previews: some View { | |
| ContentView() | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment