getIcons function

List<Icon> getIcons()

Implementation

List<Icon> getIcons() {
  return const [
    Icon(
      IconData(personIcon, fontFamily: 'MaterialIcons'),
      color: Colors.purple,
    ),
    Icon(
      IconData(workIcon, fontFamily: 'MaterialIcons'),
      color: Colors.pink,
    ),
    Icon(
      IconData(movieIcon, fontFamily: 'MaterialIcons'),
      color: Colors.green,
    ),
    Icon(
      IconData(sportIcon, fontFamily: 'MaterialIcons'),
      color: Colors.yellow,
    ),
    Icon(
      IconData(laptopIcon, fontFamily: 'MaterialIcons'),
      color: Colors.cyan,
    ),
    Icon(
      IconData(travelIcon, fontFamily: 'MaterialIcons'),
      color: Colors.deepPurple,
    ),
    Icon(
      IconData(shopIcon, fontFamily: 'MaterialIcons'),
      color: Colors.blue,
    ),
    Icon(
      IconData(bookIcon, fontFamily: 'MaterialIcons'),
      color: Colors.deepOrange,
    ),
    Icon(
      IconData(editNoteIcon, fontFamily: 'MaterialIcons'),
      color: editNoteColor,
    ),
    Icon(
      IconData(gamepadIcon, fontFamily: 'MaterialIcons'),
      color: gamePadColor,
    ),
  ];
}