backup: 사용하지 않는 파일 삭제 전 복구 지점
- 전체 371개 파일 중 82개 미사용 파일 식별 - Phase 1: 33개 파일 삭제 예정 (100% 안전) - Phase 2: 30개 파일 삭제 검토 예정 - Phase 3: 19개 파일 수동 검토 예정 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import '../constants/app_constants.dart';
|
||||
import '../utils/error_handler.dart';
|
||||
import '../../data/models/common/pagination_params.dart';
|
||||
|
||||
@@ -26,7 +27,7 @@ abstract class BaseListController<T> extends ChangeNotifier {
|
||||
int _currentPage = 1;
|
||||
|
||||
/// 페이지당 아이템 수
|
||||
int _pageSize = 10;
|
||||
int _pageSize = AppConstants.defaultPageSize;
|
||||
|
||||
/// 더 많은 데이터가 있는지 여부
|
||||
bool _hasMore = true;
|
||||
@@ -51,7 +52,7 @@ abstract class BaseListController<T> extends ChangeNotifier {
|
||||
}
|
||||
|
||||
/// 컨트롤러 초기화 (페이지 크기 설정 및 데이터 로드)
|
||||
Future<void> initialize({int pageSize = 10}) async {
|
||||
Future<void> initialize({int pageSize = AppConstants.defaultPageSize}) async {
|
||||
_pageSize = pageSize;
|
||||
await loadData(isRefresh: true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user