From ba53f30ccec347fb6debb35088a773f9f7f7dd98 Mon Sep 17 00:00:00 2001 From: balint1414 Date: Tue, 7 Oct 2025 20:48:03 +0200 Subject: [PATCH] kicsi hiba fix --- firka/lib/helpers/ui/common_bottom_sheets.dart | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/firka/lib/helpers/ui/common_bottom_sheets.dart b/firka/lib/helpers/ui/common_bottom_sheets.dart index 5fc2b59..6a56d8f 100644 --- a/firka/lib/helpers/ui/common_bottom_sheets.dart +++ b/firka/lib/helpers/ui/common_bottom_sheets.dart @@ -461,7 +461,7 @@ Future showTestBottomSheet( crossAxisAlignment: CrossAxisAlignment.start, children: [ SizedBox( - width: MediaQuery.of(context).size.width * 0.37, + width: MediaQuery.of(context).size.width * 0.3, child: Text( lesson.name, style: appStyle.fonts.B_16SB.apply(color: appStyle.colors.textPrimary), @@ -472,11 +472,14 @@ Future showTestBottomSheet( ], ), ), + ], + right: [ Text( formattedTime, style: appStyle.fonts.B_14R.apply(color: appStyle.colors.textSecondary), ) - ]), + ], + ), SizedBox(height: 8), SizedBox( width: MediaQuery.of(context).size.width / 1.1,