fix(ad): 스크린샷 모드에서 네이티브 광고 비활성화

This commit is contained in:
JiWoong Sul
2025-12-04 16:29:32 +09:00
parent 04b1c3e987
commit bcc26f5e79
11 changed files with 1037 additions and 230 deletions

View File

@@ -37,6 +37,12 @@ abstract class SettingsRepository {
/// 알림 활성화 여부를 설정합니다
Future<void> setNotificationEnabled(bool enabled);
/// 스크린샷 모드 활성화 여부를 가져옵니다
Future<bool> isScreenshotModeEnabled();
/// 스크린샷 모드 활성화 여부를 설정합니다
Future<void> setScreenshotModeEnabled(bool enabled);
/// 다크모드 설정을 가져옵니다
Future<bool> isDarkModeEnabled();