Change ionia heading font style (#427)

This commit is contained in:
Godwin Asuquo 2022-07-21 16:25:47 +03:00 committed by GitHub
parent 69577e192a
commit bfa904f12d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 10 additions and 10 deletions

View file

@ -39,7 +39,7 @@ class IoniaCreateAccountPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.sign_up,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -35,7 +35,7 @@ class IoniaLoginPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.login,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -39,7 +39,7 @@ class IoniaVerifyIoniaOtp extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.verification,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -16,7 +16,7 @@ class IoniaWelcomePage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.welcome_to_cakepay,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -18,7 +18,7 @@ class IoniaAccountPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.account,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -22,7 +22,7 @@ class IoniaActivateDebitCardPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.debit_card,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -31,7 +31,7 @@ class IoniaBuyGiftCardDetailPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
ioniaPurchaseViewModel.ioniaMerchant.legalName,
style: textLargeSemiBold(color: Theme.of(context).accentTextTheme.display4.backgroundColor),
style: textMediumSemiBold(color: Theme.of(context).accentTextTheme.display4.backgroundColor),
);
}

View file

@ -22,7 +22,7 @@ class IoniaDebitCardPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.current.debit_card,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display4.backgroundColor,
),
);

View file

@ -56,7 +56,7 @@ class IoniaGiftCardDetailPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
viewModel.giftCard.legalName,
style: textLargeSemiBold(color: Theme.of(context).accentTextTheme.display4.backgroundColor),
style: textMediumSemiBold(color: Theme.of(context).accentTextTheme.display4.backgroundColor),
);
}

View file

@ -91,7 +91,7 @@ class IoniaManageCardsPage extends BasePage {
Widget middle(BuildContext context) {
return Text(
S.of(context).gift_cards,
style: textLargeSemiBold(
style: textMediumSemiBold(
color: Theme.of(context).accentTextTheme.display3.backgroundColor,
),
);