Skip to content

Commit c2fb13a

Browse files
committed
fix: 친구 편지목록 엠티뷰 위치 60px 더 위로 조정
- Transform.translate를 사용하여 60px 위로 이동 - 엠티뷰가 더 상단에 자연스럽게 배치됨
1 parent a28ea14 commit c2fb13a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/presentation/screens/bouquet/bouquet_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,8 +434,8 @@ class _BouquetScreenState extends State<BouquetScreen> {
434434
hasScrollBody: false,
435435
child: Align(
436436
alignment: Alignment.topCenter,
437-
child: Padding(
438-
padding: const EdgeInsets.only(top: 20),
437+
child: Transform.translate(
438+
offset: const Offset(0, -60),
439439
child: EmptyState(
440440
icon: Icons.mail_outline,
441441
title: AppStrings.noLettersYet(locale),

0 commit comments

Comments
 (0)