refactor: UI 화면 통합 및 불필요한 파일 정리
- 모든 *_redesign.dart 파일을 기본 화면 파일로 통합 - 백업용 컨트롤러 파일들 제거 (*_controller.backup.dart) - 사용하지 않는 예제 및 테스트 파일 제거 - Clean Architecture 적용 후 남은 정리 작업 완료 - 테스트 코드 정리 및 구조 개선 준비 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -5,21 +5,21 @@ import 'package:superport/screens/login/controllers/login_controller.dart';
|
||||
import 'dart:math' as math;
|
||||
|
||||
/// shadcn/ui 스타일로 재설계된 로그인 화면
|
||||
class LoginViewRedesign extends StatefulWidget {
|
||||
class LoginView extends StatefulWidget {
|
||||
final LoginController controller;
|
||||
final VoidCallback onLoginSuccess;
|
||||
|
||||
const LoginViewRedesign({
|
||||
const LoginView({
|
||||
Key? key,
|
||||
required this.controller,
|
||||
required this.onLoginSuccess,
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<LoginViewRedesign> createState() => _LoginViewRedesignState();
|
||||
State<LoginView> createState() => _LoginViewState();
|
||||
}
|
||||
|
||||
class _LoginViewRedesignState extends State<LoginViewRedesign>
|
||||
class _LoginViewState extends State<LoginView>
|
||||
with TickerProviderStateMixin {
|
||||
late AnimationController _fadeController;
|
||||
late Animation<double> _fadeAnimation;
|
||||
@@ -335,4 +335,4 @@ class _LoginViewRedesignState extends State<LoginViewRedesign>
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user