What we can do to call ripple effect programmaticaly?
Example of my code:
return RadioListTile(
key: _radioKey,
focusNode: focusNode,
value: radioValue,
groupValue: radioGroupValue,
activeColor: AppColors.underlineColor,
toggleable: true,
enableFeedback: true,
onChanged: (int? value) {
_onSelectItem();
},
dense: false,
title: Padding(
padding: EdgeInsets.only(bottom: 5),
child: Text(
widget.title,
textAlign: TextAlign.left,
style: TextStyle(
color: Theme.of(context).textTheme.headline6?.color,
fontSize: 16
),
)),
Text(
widget.subtitle,
textAlign: TextAlign.left,
style: TextStyle(
color: Theme.of(context).textTheme.subtitle1?.color,
fontSize: 14
),
)
the problem is when i click on the circle of RadioListTile there is no ripple-effect, can i do it programmaticaly?