I have tried this:
child: Scaffold(
appBar: AppBar(
backgroundColor: Color(0xFF0AA89E),
title: Text(
'Archives',
style: TextStyle(
fontFamily: 'Poppins',
fontSize: 17,
),
),
bottom: TabBar(
isScrollable: true,
indicatorColor: Color(0xFF0AA89E),
unselectedLabelColor: Colors.white,
labelColor: Colors.black,
// overlayColor: const const Color(0xFF0AA89E),
tabs: [
Tab(text: ' Category'),
Tab(text: ' Item '),
Tab(text: ' Variants '),
Tab(text: ' Choice '),
Tab(text: ' Extras '),
],
),
),
body: TabBarView(
children: [
FirstPage(),
SecondPage(),
ThirdPage(),
FourPage(),
FivePage()
],
),
);