i need a help to change color of title, when its selected. Now its blue, but i wanna change it to black. Here is my code
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: _widgetOptions.elementAt(_selectedIndex),
),
bottomNavigationBar: BottomNavigationBar(
items: <BottomNavigationBarItem> [
BottomNavigationBarItem(
activeIcon: Icon(
Icons.store,
color: Colors.black,
),
icon: Icon(
Icons.store,
color: Colors.grey,
),
title: Text(
'Ponuky',
style: GoogleFonts.josefinSans(
fontWeight: FontWeight.w600,
),
),
),