1. 이용 내역(History) 화면 구현 및 UI 개선

2. 이용 내역 리스트 및 기간별 필터링 기능 추가
3. 상세 보기(Bottom Sheet) 및 타임라인 UI 적용
4. 전체 페이지 컬러 변경 등 디자인 개선
This commit is contained in:
KIMGYEONGRAN
2025-11-27 14:54:41 +09:00
parent 32daaad975
commit c1d8fc597d
4 changed files with 653 additions and 22 deletions

View File

@@ -5,6 +5,7 @@ import 'package:smarthelmet_app/control_screen.dart';
import 'package:smarthelmet_app/history_screen.dart';
import 'package:smarthelmet_app/rent_return_screen.dart';
import 'package:smarthelmet_app/settings_screen.dart';
import 'package:smarthelmet_app/login_screen.dart';
void main() {
runApp(const SmartHelmetApp());
@@ -32,7 +33,7 @@ class SmartHelmetApp extends StatelessWidget {
bodyMedium: TextStyle(color: Colors.white70, fontWeight: FontWeight.w400),
),
),
home: const HomeScreen(),
home: LoginScreen(),
);
}
}