Skip to content

Instantly share code, notes, and snippets.

@scott-lydon
Last active September 25, 2022 00:41
Show Gist options
  • Save scott-lydon/5832a6b74c64ba5ee596b6b38d8d38eb to your computer and use it in GitHub Desktop.
Save scott-lydon/5832a6b74c64ba5ee596b6b38d8d38eb to your computer and use it in GitHub Desktop.
//
// WeirdIssue.swift
// QRCodeTarot
//
// Created by Scott Lydon on 9/24/22.
//
import SwiftUI
struct WeirdIssue: View {
var body: some View {
VStack {
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
Spacer(minLength: 10)
Text("Hello, World!")
}
}
}
struct WeirdIssue_Previews: PreviewProvider {
static var previews: some View {
WeirdIssue()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment