buildCriteria method
Implementation
Widget buildCriteria(bool isValid, String text) {
return Row(
children: [
Icon(
isValid ? Icons.done : Icons.close,
color: isValid ? ColorHelper.green03 : ColorHelper.red02,
size: 14,
),
const SizedBox(width: 11),
Text(
text,
style: TextStyle(
color: isValid ? ColorHelper.green03 : ColorHelper.red02,
fontSize: 11,
fontWeight: FontWeight.w400),
),
],
);
}