[core] Fix Naming of Files (#122)

Fix the naming of some files: Instead of login we are always using the
term sign in and already renamed the `DesktopLoginManager` to
`DesktopSignInManager` in #106. During the renaming we forgot to rename
the file which is now done.

We also renamed the `sign_in_with_apple.dart` file to
`signin_with_apple.dart`, because the other files also do not contain an
underscore between sign and in.
This commit is contained in:
Rico Berger
2024-01-31 19:32:23 +01:00
committed by GitHub
parent b645244378
commit 04314f116d
3 changed files with 2 additions and 2 deletions

View File

@@ -10,9 +10,9 @@ import 'package:supabase_flutter/supabase_flutter.dart' as supabase;
import 'package:feeddeck/repositories/app_repository.dart';
import 'package:feeddeck/repositories/settings_repository.dart';
import 'package:feeddeck/utils/constants.dart';
import 'package:feeddeck/utils/desktop_login_manager.dart';
import 'package:feeddeck/utils/desktop_signin_manager.dart';
import 'package:feeddeck/utils/fd_icons.dart';
import 'package:feeddeck/utils/sign_in_with_apple.dart';
import 'package:feeddeck/utils/signin_with_apple.dart';
import 'package:feeddeck/widgets/deck/deck_layout.dart';
import 'package:feeddeck/widgets/general/elevated_button_progress_indicator.dart';
import 'package:feeddeck/widgets/general/logo.dart';