1. 하단 네비게이션 바 수정

2. 대여소 지도 및 리스트 화면 제작 (RentReturnScreen)
3. 대여/반납 상세 진행 화면 구현 (RentalProcessScreen)
This commit is contained in:
KIMGYEONGRAN
2025-11-25 17:51:50 +09:00
parent 02fd25264d
commit 32daaad975
7 changed files with 712 additions and 28 deletions

View File

@@ -3,7 +3,7 @@ import 'package:flutter/services.dart';
import 'package:smarthelmet_app/home_screen_content.dart';
import 'package:smarthelmet_app/control_screen.dart';
import 'package:smarthelmet_app/history_screen.dart';
import 'package:smarthelmet_app/alerts_report_screen.dart';
import 'package:smarthelmet_app/rent_return_screen.dart';
import 'package:smarthelmet_app/settings_screen.dart';
void main() {
@@ -51,7 +51,7 @@ class _HomeScreenState extends State<HomeScreen> {
const HomeScreenContent(),
const HistoryScreen(),
const ControlScreen(),
const AlertsReportScreen(),
const RentReturnScreen(),
const SettingsScreen(),
];
@@ -91,11 +91,11 @@ class _HomeScreenState extends State<HomeScreen> {
BottomNavigationBarItem(icon: Icon(Icons.home), label: 'HOME'),
BottomNavigationBarItem(icon: Icon(Icons.history), label: 'HISTORY'),
BottomNavigationBarItem(icon: Icon(Icons.settings_input_component), label: 'CONTROL'),
BottomNavigationBarItem(icon: Icon(Icons.notifications_active), label: 'ALERTS'),
BottomNavigationBarItem(icon: Icon(Icons.assignment_return_outlined), label: 'RENT/RETURN'),
BottomNavigationBarItem(icon: Icon(Icons.settings), label: 'SETTINGS'),
],
),
),
);
}
}
}