Dear Development Team
I have seen many solutions for Menu, Sidebar, Radio Button Group and Tabs. All of them have one in common - only one can be active. So means if you have selected one and select after another item the one before has to be unselected and the selcted has to change to the active one.
At the moment people go and do many variants or the better solution is for each State it needs to set one variable for the selected one to “true” and all the other once to “false”. That’s not like an expected solution.
For Example the possibility to have local variables (not global) for a main component which are saving the value.
So you can easy set the value of a variable and inside to compare the value. For example is the value ==3 than go to menu 3, set radio button 3 to true, set the tab 3 and show it, ..
Also a Bit Logic is possible. Example
const RADIO_A = 1 << 0;
const RADIO_B = 1 << 1;
const RADIO_C = 1 << 2;
That helps a lot and you have a proper solution.
Greetings Fredy
