6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit dac7c627
Changed files
comwell_key_app/lib/payment_cards/payment_cards_page.dart | 2 +- .../lib/pregistration/pages/prereg_confirmation_page.dart | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-)
Diff
diff --git a/comwell_key_app/lib/payment_cards/payment_cards_page.dart b/comwell_key_app/lib/payment_cards/payment_cards_page.dart
index 07fae880..cdb4fb7e 100644
--- a/comwell_key_app/lib/payment_cards/payment_cards_page.dart
+++ b/comwell_key_app/lib/payment_cards/payment_cards_page.dart
@@ -96,7 +96,7 @@ class PaymentCardsPage extends StatelessWidget {
),
const SizedBox(height: 12),
const AddCard(),
- const ApproveConditionsWidget(),
+ const ApproveConditionsWidget(),
],
),
),
diff --git a/comwell_key_app/lib/pregistration/pages/prereg_confirmation_page.dart b/comwell_key_app/lib/pregistration/pages/prereg_confirmation_page.dart
index 0eb2fdba..37ed4e2c 100644
--- a/comwell_key_app/lib/pregistration/pages/prereg_confirmation_page.dart
+++ b/comwell_key_app/lib/pregistration/pages/prereg_confirmation_page.dart
@@ -58,7 +58,10 @@ class PreregConfirmationPage extends StatelessWidget {
const SizedBox(height: 12),
InformationCard(
title: "preregistration_confirmation_address_card_title".tr(),
- titleStyle: theme.textTheme.titleMedium,
+ titleStyle: theme.textTheme.titleMedium?.copyWith(
+ fontWeight: FontWeight.w500,
+ color: Colors.black.withValues(alpha: 0.65),
+ ),
onEditClick: cubit.onEditAddressClicked,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
@@ -119,14 +122,13 @@ class PreregConfirmationPage extends StatelessWidget {
children: [
Text(
"${state.extrasTotalPrice} kr.",
- style: theme.textTheme.titleLarge?.copyWith(
- fontWeight: FontWeight.bold,
- ),
+ style: theme.textTheme.bodyMedium
),
Text(
"preregistration_confirmation_extras_card_subtitle".tr(),
- style: theme.textTheme.bodyMedium!
- .copyWith(fontWeight: FontWeight.w400),
+ style: theme.textTheme.bodySmall?.copyWith(
+ color: Colors.black.withValues(alpha: 0.65),
+ ),
)
],
),