Last active
September 25, 2022 00:41
-
-
Save scott-lydon/5832a6b74c64ba5ee596b6b38d8d38eb to your computer and use it in GitHub Desktop.
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
// | |
// 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