Skip to content

Instantly share code, notes, and snippets.

@IsaAliev
Last active August 12, 2021 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IsaAliev/8d5729d6a73b51f1fa5c7a13b430283e to your computer and use it in GitHub Desktop.
Save IsaAliev/8d5729d6a73b51f1fa5c7a13b430283e to your computer and use it in GitHub Desktop.
struct MainView: View {
var body: some View {
TabView() {
AccountView()
.tabItem {
Image(systemName: "person.crop.circle")
}
Text("Second")
.tabItem {
Image(systemName: "square.grid.2x2.fill")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment