IconButton

IconButton is a button widget in Flutter that displays an icon which can be clicked to perform an action. It is a very useful widget for creating interactive user interfaces.

Example:

IconButton(
  icon: Icon(Icons.add),
  onPressed: () {
    // Perform some action when button is clicked
  },
)