Untitled
Anonymous
plain_text
10/05/2022 9:32 AM
1000 B
29
Indexable
Card(
color: Colors.orange,
child: Theme(
data: ThemeData(unselectedWidgetColor: Colors.orange),
child: RadioListTile(
value: index,
groupValue: controller.selectedValue,
activeColor: Colors.white,
title: Text(contact.cardNumber!
.replaceAll(RegExp(r'[^\s](?=.{4})'), '*')),
onChanged: (value) {
controller.selectTR(value);
print(value);
},
),
),
);Editor is loading...