6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 84a83aab
Changed files
.../lib/contact/components/call_us_section.dart | 2 +- .../components/current_booking_list_item_view.dart | 35 ++++++++++++---------- 2 files changed, 20 insertions(+), 17 deletions(-)
Diff
diff --git a/comwell_key_app/lib/contact/components/call_us_section.dart b/comwell_key_app/lib/contact/components/call_us_section.dart
index 303cab20..dd8698d9 100644
--- a/comwell_key_app/lib/contact/components/call_us_section.dart
+++ b/comwell_key_app/lib/contact/components/call_us_section.dart
@@ -33,7 +33,7 @@ class CallUsSection extends StatelessWidget {
minimumSize: const Size(double.infinity, 52),
),
onPressed: () async {
- await makePhoneCall('comwell_telefon_number'.tr());
+ await makePhoneCall('comwell_telephone_number'.tr());
},
child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [
Text(
diff --git a/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart b/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart
index 69cb1972..e4c3c493 100644
--- a/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart
+++ b/comwell_key_app/lib/overview/components/current_booking_list_item_view.dart
@@ -97,24 +97,27 @@ class CurrentBookingListItem extends StatelessWidget {
child: SvgPicture.asset("assets/icons/check-in.svg"),
),
const SizedBox(width: 8),
- Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- "prepare_room".tr(),
- style: theme.textTheme.bodyMedium,
- textAlign: TextAlign.start,
- ),
- Text(
- "jump_line_text".tr(),
- textAlign: TextAlign.start,
- style: theme.textTheme.bodySmall?.copyWith(
- color: Colors.grey.shade500,
+ Expanded(
+ child: Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Text(
+ "prepare_room".tr(),
+ style: theme.textTheme.bodyMedium,
+ textAlign: TextAlign.start,
+ ),
+ Text(
+ "jump_line_text".tr(),
+ overflow: TextOverflow.ellipsis,
+ textAlign: TextAlign.start,
+ style: theme.textTheme.bodySmall?.copyWith(
+ color: Colors.grey.shade500,
+ ),
),
- ),
- ],
+ ],
+ ),
),
- const Spacer(),
+ const SizedBox(width: 8),
SvgPicture.asset("assets/icons/arrow-left.svg"),
],
),