How can I tap on the second Text Span area even if it has rich text property? I am new to flutter driver and I found out rich text not supported...
Padding(
padding: const EdgeInsets.only(top: 16.0, bottom: 24.0),
child: Text.rich(
TextSpan(
text: s.refill_description,
style: primaryTextTheme.textSmall,
children: [
if (user.paymentDetails?.type == LegalEntityType.private)
TextSpan(
text: s.withdraw_label,
style: primaryTextTheme.textSmall.copyWith(color: FlAppStyles.linkTextColor),
recognizer: TapGestureRecognizer()..onTap = () => showRefundScreen(context),
)