6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit e43ace2c

AuthorEdmir Suljic<esu@dwarf.dk>
Date2025-06-30 10:50:14 +0200
mid fix

Changed files

comwell_key_app/lib/choose_share_room/choose_share_room_page.dart | 2 +-
 comwell_key_app/lib/themes/light_theme.dart                       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Diff

diff --git a/comwell_key_app/lib/choose_share_room/choose_share_room_page.dart b/comwell_key_app/lib/choose_share_room/choose_share_room_page.dart
index 0f571c11..2404185c 100644
--- a/comwell_key_app/lib/choose_share_room/choose_share_room_page.dart
+++ b/comwell_key_app/lib/choose_share_room/choose_share_room_page.dart
@@ -27,7 +27,7 @@ class ChooseShareRoomPage extends StatelessWidget {
const SizedBox(height: 8),
Text(
'choose_room_subtitle'.tr(),
- style: theme.textTheme.bodySmall?.copyWith(fontWeight: FontWeight.w400),
+ style: theme.textTheme.bodySmall,
),
const SizedBox(height: 24),
ChooseRoomWidget(
diff --git a/comwell_key_app/lib/themes/light_theme.dart b/comwell_key_app/lib/themes/light_theme.dart
index 0fce1cd0..48e4fa97 100644
--- a/comwell_key_app/lib/themes/light_theme.dart
+++ b/comwell_key_app/lib/themes/light_theme.dart
@@ -20,7 +20,7 @@ ThemeData lightTheme = ThemeData(
headlineMedium: TextStyle(fontSize: 18.0, fontWeight: FontWeight.w600),
headlineSmall: TextStyle(fontSize: 16.0, fontWeight: FontWeight.w600),
bodyMedium: TextStyle(fontSize: 16.0, fontWeight: FontWeight.w600),
- bodySmall: TextStyle(fontSize: 14.0, fontWeight: FontWeight.w500),
+ bodySmall: TextStyle(fontSize: 14.0, fontWeight: FontWeight.w500, fontFamily: 'Fellix-Light'),
labelLarge: TextStyle(fontSize: 14.0, fontWeight: FontWeight.w600),
titleLarge: TextStyle(fontSize: 28.0, fontWeight: FontWeight.w600),
),