I have a right side panel in my window. Inside that right side panel are 4 tab panels. From another location in my code I want to programmatically bring one specific panel forward. How do I bring that particular tab panel forward. For instance someView3( ).
struct RightPanelView: View {
var body: some View {
VStack {
TabView {
VStack{
someView1( )
someView2( )
someView3( )
}
}
}
}
}