Skip to content

Commit 2553081

Browse files
committed
Remove Firebase and Google Calendar integration
This commit removes all Firebase and Google Calendar dependencies and logic. - Deletes all Firebase-related files and code (firebase_options.dart, Firebase imports, etc.) - Removes Google Calendar sync and related UI - Refactors authentication to use only API-based login/register/logout - Updates profile and statistics features to use API service and current user - Cleans up unused imports and code paths - Updates UI and Bloc logic to reflect API-only authentication and user management
1 parent 683d6ba commit 2553081

27 files changed

Lines changed: 1461 additions & 2126 deletions

lib/app/layouts/widgets/plan_sheet/calendar_time_dialog.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ import 'package:flutter/material.dart';
33
class CalendarTimeDialog extends StatefulWidget {
44
final String initialStart;
55
final String initialEnd;
6-
final bool isGoogleCalendarEvent;
76

87
const CalendarTimeDialog({
98
this.initialStart = '',
109
this.initialEnd = '',
11-
required this.isGoogleCalendarEvent,
1210
super.key,
1311
});
1412

0 commit comments

Comments
 (0)