diff --git a/lib/core/network/network_info.dart b/lib/core/network/network_info.dart index 1bd4a6fe..206c9600 100644 --- a/lib/core/network/network_info.dart +++ b/lib/core/network/network_info.dart @@ -1,4 +1,3 @@ -import 'package:equatable/equatable.dart'; import 'package:internet_connection_checker/internet_connection_checker.dart'; abstract class INetworkInfo { diff --git a/lib/features/auth/data/datasources/local data sources/local_data_source.dart b/lib/features/auth/data/datasources/local data sources/local_data_source.dart index 421210e7..0491ec0a 100644 --- a/lib/features/auth/data/datasources/local data sources/local_data_source.dart +++ b/lib/features/auth/data/datasources/local data sources/local_data_source.dart @@ -4,7 +4,6 @@ import 'package:dairy_app/core/logger/logger.dart'; import 'package:dairy_app/features/auth/core/failures/failures.dart'; import 'package:dairy_app/features/auth/data/datasources/local%20data%20sources/local_data_source_template.dart'; import 'package:dairy_app/features/auth/data/models/logged_in_user_model.dart'; -import 'package:flutter/material.dart'; import 'package:sqflite/sqflite.dart'; import 'package:dairy_app/core/databases/db_schemas.dart'; diff --git a/lib/features/auth/data/repositories/user_config_repository.dart b/lib/features/auth/data/repositories/user_config_repository.dart index b22a9d59..bdc5349e 100644 --- a/lib/features/auth/data/repositories/user_config_repository.dart +++ b/lib/features/auth/data/repositories/user_config_repository.dart @@ -2,7 +2,6 @@ import 'dart:convert'; import 'package:dairy_app/core/logger/logger.dart'; import 'package:dairy_app/features/auth/data/models/user_config_model.dart'; -import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; import 'package:dairy_app/features/sync/data/datasources/temeplates/key_value_data_source_template.dart'; final log = printer("UserConfigRepository"); diff --git a/lib/features/auth/presentation/pages/auth_page.dart b/lib/features/auth/presentation/pages/auth_page.dart index c5ca3d1d..16345e97 100644 --- a/lib/features/auth/presentation/pages/auth_page.dart +++ b/lib/features/auth/presentation/pages/auth_page.dart @@ -3,7 +3,6 @@ import 'package:dairy_app/app/themes/theme_extensions/auth_page_theme_extensions.dart'; import 'package:dairy_app/core/animations/flip_card_animation.dart'; import 'package:dairy_app/core/dependency_injection/injection_container.dart'; -import 'package:dairy_app/core/widgets/glassmorphism_cover.dart'; import 'package:dairy_app/features/auth/data/repositories/fingerprint_auth_repo.dart'; import 'package:dairy_app/features/auth/presentation/bloc/auth_session/auth_session_bloc.dart'; import 'package:dairy_app/features/auth/presentation/widgets/privacy_policy.dart'; @@ -13,7 +12,6 @@ import 'package:dairy_app/features/auth/presentation/widgets/sign_up_form.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; -import 'package:url_launcher/url_launcher.dart'; class AuthPage extends StatefulWidget { // user id of last logged in user to determine if it is a fresh login or not diff --git a/lib/features/auth/presentation/widgets/password_reset_popup.dart b/lib/features/auth/presentation/widgets/password_reset_popup.dart index c80d83da..fc03c179 100644 --- a/lib/features/auth/presentation/widgets/password_reset_popup.dart +++ b/lib/features/auth/presentation/widgets/password_reset_popup.dart @@ -1,5 +1,3 @@ -import 'dart:io'; - import 'package:dairy_app/app/themes/theme_extensions/popup_theme_extensions.dart'; import 'package:dairy_app/core/utils/utils.dart'; import 'package:dairy_app/core/widgets/glass_dialog.dart'; diff --git a/lib/features/auth/presentation/widgets/sign_up_form.dart b/lib/features/auth/presentation/widgets/sign_up_form.dart index 434be700..8684c276 100644 --- a/lib/features/auth/presentation/widgets/sign_up_form.dart +++ b/lib/features/auth/presentation/widgets/sign_up_form.dart @@ -1,4 +1,3 @@ -import 'package:dairy_app/app/themes/theme_extensions/auth_page_theme_extensions.dart'; import 'package:dairy_app/core/utils/utils.dart'; import 'package:dairy_app/core/widgets/glassmorphism_cover.dart'; import 'package:dairy_app/core/widgets/submit_button.dart'; diff --git a/lib/features/notes/presentation/widgets/read_only_editor.dart b/lib/features/notes/presentation/widgets/read_only_editor.dart index aeb79ba4..73da5132 100644 --- a/lib/features/notes/presentation/widgets/read_only_editor.dart +++ b/lib/features/notes/presentation/widgets/read_only_editor.dart @@ -2,7 +2,6 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_ext import 'package:flutter/material.dart'; import 'package:flutter_quill/flutter_quill.dart'; import 'package:flutter_quill_extensions/flutter_quill_extensions.dart'; -import 'package:tuple/tuple.dart'; class ReadOnlyEditor extends StatelessWidget { QuillController? controller; diff --git a/lib/features/sync/data/datasources/dropbox_sync_client.dart b/lib/features/sync/data/datasources/dropbox_sync_client.dart index 78b23296..8c7fc25a 100644 --- a/lib/features/sync/data/datasources/dropbox_sync_client.dart +++ b/lib/features/sync/data/datasources/dropbox_sync_client.dart @@ -5,7 +5,6 @@ import 'package:dairy_app/core/logger/logger.dart'; import 'package:dairy_app/features/auth/core/constants.dart'; import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; import 'package:dairy_app/features/sync/data/datasources/temeplates/sync_client_template.dart'; -import 'package:flutter_web_auth_2/flutter_web_auth_2.dart'; import 'package:stateless_dropbox_client/stateless_dropbox_client.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; diff --git a/lib/features/sync/presentation/widgets/sync_source_dropdown.dart b/lib/features/sync/presentation/widgets/sync_source_dropdown.dart index c4f29a46..162c5133 100644 --- a/lib/features/sync/presentation/widgets/sync_source_dropdown.dart +++ b/lib/features/sync/presentation/widgets/sync_source_dropdown.dart @@ -1,7 +1,6 @@ import 'package:dairy_app/app/themes/theme_extensions/note_create_page_theme_extensions.dart'; import 'package:dairy_app/app/themes/theme_extensions/settings_page_theme_extensions.dart'; import 'package:dairy_app/features/auth/core/constants.dart'; -import 'package:dairy_app/features/auth/presentation/bloc/cubit/theme_cubit.dart'; import 'package:dairy_app/features/auth/presentation/bloc/user_config/user_config_cubit.dart'; import 'package:flutter/material.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; diff --git a/lib/main.dart b/lib/main.dart index f2bcac54..d22bd637 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -5,7 +5,6 @@ import 'package:flutter/services.dart'; import 'package:flutter_bloc/flutter_bloc.dart'; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:google_fonts/google_fonts.dart'; -import 'package:flutter_native_splash/flutter_native_splash.dart'; import 'app/view/app.dart'; import 'core/dependency_injection/injection_container.dart' as di;