Как изменить цвет этой детали?
введите описание изображения здесь
Моя нижняя полоса здесь:
bottomNavigationBar: BottomAppBar(
shape: CircularNotchedRectangle(),
elevation: 8,
child: BottomNavigationBar(
elevation: 0,
backgroundColor: Colors.transparent,
currentIndex: currentIndex,
onTap: changePage,
items: <BottomNavigationBarItem>[
BottomNavigationBarItem(backgroundColor: Colors.orange, icon: Icon(Icons.view_day), activeIcon: Icon(Icons.view_day, color: Colors.orange,), title: Text("Home")),
BottomNavigationBarItem(backgroundColor: Colors.orange, icon: Icon(Icons.settings), activeIcon: Icon(Icons.settings, color: Colors.orange,), title: Text("Settings"))],
),
),