Is there any way to change the color of the icon in ExpansionPanelList.radio? Right now it's grey and it's not visible because the background is grey as well...
ExpansionPanelList.radio(
expandedHeaderPadding: const EdgeInsets.only(bottom: 5),
dividerColor: secondaryColor,
children: widget.items
.map(
(item) => ExpansionPanelRadio(
canTapOnHeader: true,
headerBuilder: (context, isExpanded) => ListTile(
title: Text(
item.name,
style: defTextStyle,
),
),
body: Column(
children: [],
),
value: item.name),
)
.toList(),
),