Skip to content

Instantly share code, notes, and snippets.

@aheze
Last active June 6, 2020 02:41
Show Gist options
  • Select an option

  • Save aheze/8bfd7f4b70f2eaf1cadb301b52cccc77 to your computer and use it in GitHub Desktop.

Select an option

Save aheze/8bfd7f4b70f2eaf1cadb301b52cccc77 to your computer and use it in GitHub Desktop.
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