Icon

The Icon() widget in Flutter displays a graphical symbol or glyph representing an object or concept. It is a simple way to add icons to your Flutter app.

Here is an example of how to use the Icon() widget:

Icon(
  Icons.favorite,
  color: Colors.red,
  size: 24.0,
)

This will display a red heart icon with a size of 24.0 pixels.