AvatarGlow(
glowColor: participant.isMicrophoneEnabled() ? Color(0XFF6ffc03) : Colors.red,
child: Icon(
Icons.mic,
size: 240,
color: Colors.white,
),
animate: participant.isMicrophoneEnabled(),
),
I want to use the endRadius property because right now the glow ripples are too wide spread & I tried dropping down the version but then the positioning turns really bad for the icon. Also, is there any way to reduce the icon size without it affecting AvatarGlow because right now when I reduce the icon size the AvatarGlow's size also reduces.
AvatarGlow(
glowColor: participant.isMicrophoneEnabled() ? Color(0XFF6ffc03) : Colors.red,
child: Icon(
Icons.mic,
size: 240,
color: Colors.white,
),
animate: participant.isMicrophoneEnabled(),
),