arrowAltCircleLeft - Arrow Icons
arrowAltCircleLeft - Arrow Icons form FontAwesome
Dart Code for Flutter:
HTML Code for Web Pages:
Change Icon Size
To change size of Icon, use size
property of Icon()
widget, and implement double value.
Icon(
FontAwesomeIcons.arrowAltCircleLeft,
size: 50, //Icon Size
)
Change Icon Color
To change color of Icon, use color
property of Icon()
widget, and implement colour value.
Icon(
FontAwesomeIcons.arrowAltCircleLeft,
color: Colors.green, //Color of Icon
)