|
...
|
...
|
@@ -269,7 +269,7 @@ class _InfoCard extends StatelessWidget { |
|
|
|
title,
|
|
|
|
style: TextStyle(
|
|
|
|
color: context.colors.textPrimary,
|
|
|
|
fontSize: 12,
|
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
),
|
|
|
|
),
|
|
...
|
...
|
@@ -294,7 +294,7 @@ class _InfoText extends StatelessWidget { |
|
|
|
text,
|
|
|
|
style: TextStyle(
|
|
|
|
color: context.colors.textSecondary,
|
|
|
|
fontSize: 12,
|
|
|
|
fontSize: 13,
|
|
|
|
fontWeight: FontWeight.w400,
|
|
|
|
),
|
|
|
|
),
|
|
...
|
...
|
@@ -309,11 +309,11 @@ class _ContactText extends StatelessWidget { |
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final l10n = context.l10n;
|
|
|
|
|
|
|
|
return RichText(
|
|
|
|
text: TextSpan(
|
|
|
|
return Text.rich(
|
|
|
|
TextSpan(
|
|
|
|
style: TextStyle(
|
|
|
|
color: context.colors.textSecondary,
|
|
|
|
fontSize: 12,
|
|
|
|
fontSize: 13,
|
|
|
|
fontWeight: FontWeight.w400,
|
|
|
|
),
|
|
|
|
children: [
|
|
...
|
...
|
@@ -321,7 +321,7 @@ class _ContactText extends StatelessWidget { |
|
|
|
text: l10n.todayFaqContactPrefix,
|
|
|
|
style: TextStyle(
|
|
|
|
color: context.colors.textSecondary,
|
|
|
|
fontSize: 12,
|
|
|
|
fontSize: 13,
|
|
|
|
fontWeight: FontWeight.w400,
|
|
|
|
),
|
|
|
|
),
|
|
...
|
...
|
@@ -332,10 +332,11 @@ class _ContactText extends StatelessWidget { |
|
|
|
Get.toNamed(Routes.SUBMIT_FEEDBACK);
|
|
|
|
},
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 12,
|
|
|
|
fontSize: 13,
|
|
|
|
color: context.colors.primary,
|
|
|
|
fontWeight: FontWeight.w400,
|
|
|
|
decoration: TextDecoration.underline,
|
|
|
|
decorationColor: context.colors.primary,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
TextSpan(text: l10n.todayFaqContactSuffix),
|
...
|
...
|
|