how to make favorite icon to change color when clicked in flutter 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,
),