flutter icon on tap code example
Example 1: circle around icon flutter
CircleAvatar(
backgroundColor: Colors.white,
radius: 30,
child: Icon(Icons.add),
),
Example 2: flutter icon tap
IconButton(icon: new Icon(Icons.bookmark), onPressed: () { /* Your code */ },)