From 0c6b10d4f66b748aaa3a267e88baa2b66c1039b3 Mon Sep 17 00:00:00 2001 From: JiWoong Sul Date: Fri, 5 Dec 2025 16:13:54 +0900 Subject: [PATCH] =?UTF-8?q?fix(ad):=20=ED=99=94=EB=A9=B4=EB=B3=84=20?= =?UTF-8?q?=EB=84=A4=EC=9D=B4=ED=8B=B0=EB=B8=8C=20=EA=B4=91=EA=B3=A0=20?= =?UTF-8?q?=EB=86=92=EC=9D=B4=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/restaurant_list/restaurant_list_screen.dart | 2 +- lib/presentation/pages/share/share_screen.dart | 2 +- lib/presentation/widgets/native_ad_placeholder.dart | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/presentation/pages/restaurant_list/restaurant_list_screen.dart b/lib/presentation/pages/restaurant_list/restaurant_list_screen.dart index 2e0b922..c234fdd 100644 --- a/lib/presentation/pages/restaurant_list/restaurant_list_screen.dart +++ b/lib/presentation/pages/restaurant_list/restaurant_list_screen.dart @@ -167,7 +167,7 @@ class _RestaurantListScreenState extends ConsumerState { horizontal: 16, vertical: 8, ), - height: 200, // 카드 높이와 비슷한 중간 사이즈 + height: 100, // 작은 템플릿으로 노출 ); } diff --git a/lib/presentation/pages/share/share_screen.dart b/lib/presentation/pages/share/share_screen.dart index 4e8497b..e349386 100644 --- a/lib/presentation/pages/share/share_screen.dart +++ b/lib/presentation/pages/share/share_screen.dart @@ -162,7 +162,7 @@ class _ShareScreenState extends ConsumerState { ), const SizedBox(height: 16), NativeAdPlaceholder( - height: 220, + height: 360, enabled: !screenshotModeEnabled, ), const SizedBox(height: 16), diff --git a/lib/presentation/widgets/native_ad_placeholder.dart b/lib/presentation/widgets/native_ad_placeholder.dart index 1686324..6bafe00 100644 --- a/lib/presentation/widgets/native_ad_placeholder.dart +++ b/lib/presentation/widgets/native_ad_placeholder.dart @@ -239,7 +239,7 @@ class _NativeAdPlaceholderState extends State { double _templateMinHeight(TemplateType type) { if (type == TemplateType.small) { - return 120; + return 100; } return switch (defaultTargetPlatform) { TargetPlatform.iOS => 402.0,