Skip to content

Instantly share code, notes, and snippets.

@rudrankriyam
Created June 23, 2020 06:49
Show Gist options
  • Select an option

  • Save rudrankriyam/1b85882687cb71337e68fa6cea5c4490 to your computer and use it in GitHub Desktop.

Select an option

Save rudrankriyam/1b85882687cb71337e68fa6cea5c4490 to your computer and use it in GitHub Desktop.
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