-
-
Save sturdysturge/faa1222202d6270a3792c813f24cf323 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
| import SwiftUI | |
| @available(iOS 16.0, *) | |
| extension ContentView: View { | |
| var picker: some View { | |
| Picker("", selection: $alignment) { | |
| ForEach(HorizontalAlignment.allCases) { alignment in | |
| Text(alignment.name) | |
| .tag(alignment) | |
| } | |
| } | |
| } | |
| var body: some View { | |
| VStack { | |
| picker | |
| grid | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment