buildCriteria method

Widget buildCriteria(
  1. bool isValid,
  2. String text
)

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),
      ),
    ],
  );
}