Created
June 23, 2020 06:49
-
-
Save rudrankriyam/1b85882687cb71337e68fa6cea5c4490 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 { | |
| @State private var currentTab: Int = 0 | |
| var body: some View { | |
| TabView(selection: $currentTab) { | |
| VerticalGrid() | |
| .tabItem { | |
| Image(systemName: "rectangle.grid.3x2") | |
| Text("Vertical") | |
| } | |
| .tag(0) | |
| HorizontalGrid() | |
| .tabItem { | |
| Image(systemName: "rectangle.grid.2x2") | |
| Text("Horizontal") | |
| } | |
| .tag(1) | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment