Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephValle committed Jan 23, 2024
1 parent 1c6e71f commit 71ffc16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class AdamsCountScheduler extends StatelessWidget {
),
BlocProvider<StudentSortCubit>(
create: (context) => StudentSortCubit(),
)
),
],
child: MaterialApp(
title: 'Career Scheduler',
Expand All @@ -146,7 +146,9 @@ class AdamsCountScheduler extends StatelessWidget {
tabBarTheme: LightTabBarTheme(),
),
darkTheme: ThemeData(
colorScheme: darkColorScheme, tabBarTheme: DarkTabBarTheme()),
colorScheme: darkColorScheme,
tabBarTheme: DarkTabBarTheme(),
),
routes: RoutesMap.routesMap,
initialRoute:
currentUser == null ? Routes.signInPage : Routes.homePage,
Expand Down
1 change: 0 additions & 1 deletion lib/network_interface/api_clients/auth_api_client.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/foundation.dart';
import 'package:google_sign_in/google_sign_in.dart';

Expand Down

0 comments on commit 71ffc16

Please sign in to comment.