statusText method

Widget statusText(
  1. String text, {
  2. bool error = false,
  3. TextAlign? align,
})

Countdown / expiry line under the OTP boxes. error switches to the red "OTP expired…" look.

Implementation

Widget statusText(String text, {bool error = false, TextAlign? align}) {
  return Text(
    text,
    textAlign: align ?? TextAlign.center,
    style: TextStyle(
      fontFamily: fontFamily,
      fontSize: 13,
      color: error ? const Color(0xFFD8000C) : theme.primary,
    ),
  );
}