xxxxxxxxxx
RichText(
text: TextSpan(
text: "Didn’t receive code? ",
style: TextStyle(
fontSize: 18.sp,
fontWeight: FontWeight.w500,
color: AppColors.grey4,
fontFamily: Fonts.inter),
children: [
TextSpan(
text: 'Resend OTP',
recognizer: TapGestureRecognizer()..onTap = () {}, //here is it
style: TextStyle(
fontSize: 18.sp,
fontWeight: FontWeight.w500,
decoration: TextDecoration.underline,
color: AppColors.primaryColor,
fontFamily: Fonts.inter),
)
]))