defaultMedalLeading top-level property

List<Widget> defaultMedalLeading
getter/setter pair

Default leading widgets in the table

Implementation

List<Widget> defaultMedalLeading = [
  const CircleAvatar(
    backgroundColor: Color(0xffFEE101),
    child: Icon(
      Icons.looks_one,
      color: Colors.white,
    ),
  ),
  const CircleAvatar(
    backgroundColor: Color(0xffA7A7AD),
    child: Icon(
      Icons.looks_two,
      color: Colors.white,
    ),
  ),
  const CircleAvatar(
    backgroundColor: Color(0xffA77044),
    child: Icon(
      Icons.looks_3,
      color: Colors.white,
    ),
  ),
];