Commit b34a5288b0762e8e67fffee621061c1b88b2b059

Authored by 常守达
1 parent 98f4b6ab

fix(today):增大弹窗字体

... ... @@ -207,7 +207,7 @@ class _QuestionRow extends StatelessWidget {
overflow: TextOverflow.ellipsis,
style: TextStyle(
color: context.colors.textPrimary,
fontSize: 12,
fontSize: 13,
fontWeight: FontWeight.w400,
height: 1.4,
),
... ... @@ -388,7 +388,7 @@ class _QuestionBottomSheet extends StatelessWidget {
item.body[index],
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
fontWeight: FontWeight.w400,
height: 17 / 12,
),
... ...
... ... @@ -125,7 +125,7 @@ class _HrvInstructionCard extends StatelessWidget {
l10n.todayHrvMeasurementIntro,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -145,7 +145,7 @@ class _HrvInstructionCard extends StatelessWidget {
l10n.todayHrvMeasurementHint,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -155,7 +155,7 @@ class _HrvInstructionCard extends StatelessWidget {
l10n.todayHrvMeasurementWarning,
style: TextStyle(
color: context.colors.warning,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ...
... ... @@ -170,7 +170,7 @@ class _InfoCard extends StatelessWidget {
title,
style: TextStyle(
color: context.colors.textPrimary,
fontSize: 12,
fontSize: 14,
fontWeight: FontWeight.w600,
),
),
... ... @@ -195,7 +195,7 @@ class _InfoText extends StatelessWidget {
text,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -236,7 +236,7 @@ class _StatusItem extends StatelessWidget {
title,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -289,7 +289,7 @@ class _FaqLink extends StatelessWidget {
text,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
fontWeight: FontWeight.w400,
decoration: TextDecoration.underline,
decorationColor: context.colors.textSecondary,
... ...
... ... @@ -204,7 +204,7 @@ class _InfoCard extends StatelessWidget {
title,
style: TextStyle(
color: context.colors.textPrimary,
fontSize: 12,
fontSize: 14,
fontWeight: FontWeight.w600,
),
),
... ... @@ -229,7 +229,7 @@ class _InfoText extends StatelessWidget {
text,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -268,7 +268,7 @@ class _StatusItem extends StatelessWidget {
title,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -320,7 +320,7 @@ class _FaqLink extends StatelessWidget {
text,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
decoration: TextDecoration.underline,
... ...
... ... @@ -204,7 +204,7 @@ class _InfoCard extends StatelessWidget {
title,
style: TextStyle(
color: context.colors.textPrimary,
fontSize: 12,
fontSize: 14,
fontWeight: FontWeight.w600,
),
),
... ... @@ -229,7 +229,7 @@ class _InfoText extends StatelessWidget {
text,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -270,7 +270,7 @@ class _StatusItem extends StatelessWidget {
title,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
),
... ... @@ -323,7 +323,7 @@ class _FaqLink extends StatelessWidget {
text,
style: TextStyle(
color: context.colors.textSecondary,
fontSize: 12,
fontSize: 13,
height: 17 / 12,
fontWeight: FontWeight.w400,
decoration: TextDecoration.underline,
... ...
... ... @@ -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),
... ...