79705172

Date: 2025-07-17 17:07:21
Score: 0.5
Natty:
Report link
 itemClick(int index) {
    setState(() {
      selectedIdx = index;
      tabController!.index = selectedIdx; // this will fix the issue
    });
  }

Not just updating the selectedIdx state but also setting the index in TabController class:
tabController!.index = selectedIdx

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nivek Mozart