flutter change phone navigation bar color code example
Example 1: change icon color flutter
Icon(
Icons.widgets,
color: Colors.blue.shade400,
)
Example 2: how to change appbar color in flutter
appBar: AppBar(
title: const Text('Example'),
backgroundColor: Colors.black,
),