You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With ionic 5 and react activeTabIndex of <SuperTabs> tag not work if value change.
const [tabIdx, setTabIdx] = useState(0);
For ex: Initial state of tabIdx is 0 so work properly but if tabIdx change with setTabIdx(2); nothing happen. I mean that component rerender successfully but tab not change.
With ionic 5 and react
activeTabIndex
of<SuperTabs>
tag not work if value change.const [tabIdx, setTabIdx] = useState(0);
For ex: Initial state of
tabIdx
is 0 so work properly but if tabIdx change withsetTabIdx(2);
nothing happen. I mean that component rerender successfully but tab not change.In react mode how to change tab programmatically?
The text was updated successfully, but these errors were encountered: