Untitled
unknown
plain_text
3 years ago
749 B
16
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...