Skip to content

Commit

Permalink
fix: 최종 시연 버전
Browse files Browse the repository at this point in the history
  • Loading branch information
rlnrlnworld committed Dec 4, 2024
1 parent 07310e7 commit b1eb456
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions frontend/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ class LocalPushNotifications {
// await scheduleDailyNotificationAt();
}


static Future<void> scheduleDailyNotificationAt(String time) async {
try {
// 시간 파싱 (오전/오후 포함)
Expand All @@ -152,13 +151,12 @@ class LocalPushNotifications {
scheduledDate = scheduledDate.add(const Duration(days: 1));
}

// 백엔드에서 알림 내용 가져오기
// 백엔드에서 알림 내용 가져오기
final notificationData = await ApiClient.get('/notifications'); // API 경로

final String title = '우주 정복';
final String body = notificationData?['message'] ?? '기본 내용';


const DarwinNotificationDetails iosNotificationDetails =
DarwinNotificationDetails();

Expand All @@ -182,11 +180,10 @@ class LocalPushNotifications {
}
}


// 10초 뒤 테스트 알림 추가
static Future<void> scheduleTestNotification() async {
try {
// 백엔드에서 알림 내용 가져오기
// 백엔드에서 알림 내용 가져오기
final notificationData = await ApiClient.get('/notifications'); // API 경로

final String title = '우주 정복';
Expand Down

0 comments on commit b1eb456

Please sign in to comment.