How to implement custom tab in flutter

I want something like this. Im able to implement something similar with SwitchTab,but not able to use gradient color for selected tab. Please help SwitchTab( text: const [ "Personal", "Group", ], selectedTextColor: Colors.black, unselectedTextColor:Colors.white, shape: SwitchTabShape.rounded, thumbColor: Colors.white, backgroundColour: Color.fromARGB(255, 31, 89, 169), onValueChanged: (index) { setState(() { selected = index; }); }, ), >Solution… Read More How to implement custom tab in flutter