Horizontally scrollable tabs focus on center with snap in flutter
Same can be achieved using – unselectedLabelColor: & indicatorColor: of TabBar widget. Example Code: @override Widget build(BuildContext context) { return DefaultTabController( length: 6, child: Scaffold( appBar: AppBar( centerTitle: true, leading: Icon(Icons.person_outline), title: Text(‘DASHBOARD’,style: TextStyle(fontSize: 16.0),), bottom: PreferredSize( child: TabBar( isScrollable: true, unselectedLabelColor: Colors.white.withOpacity(0.3), indicatorColor: Colors.white, tabs: [ Tab( child: Text(‘Tab 1’), ), Tab( child: Text(‘Investment’), … Read more