You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.2 KiB
Dart
55 lines
2.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hmg_patient_app_new/core/app_state.dart';
|
|
import 'package:hmg_patient_app_new/core/dependencies.dart';
|
|
import 'package:hmg_patient_app_new/extensions/route_extensions.dart';
|
|
import 'package:hmg_patient_app_new/features/book_appointments/book_appointments_view_model.dart';
|
|
import 'package:hmg_patient_app_new/presentation/contact_us/feedback_page.dart';
|
|
import 'package:hmg_patient_app_new/presentation/hmg_services/services_page.dart';
|
|
import 'package:hmg_patient_app_new/presentation/home/landing_page.dart';
|
|
import 'package:hmg_patient_app_new/presentation/medical_file/medical_file_page.dart';
|
|
import 'package:hmg_patient_app_new/presentation/todo_section/todo_page.dart';
|
|
import 'package:hmg_patient_app_new/routes/app_routes.dart';
|
|
import 'package:hmg_patient_app_new/widgets/bottom_navigation/bottom_navigation.dart';
|
|
|
|
class LandingNavigation extends StatefulWidget {
|
|
const LandingNavigation({super.key});
|
|
|
|
@override
|
|
State<LandingNavigation> createState() => _LandingNavigationState();
|
|
}
|
|
|
|
class _LandingNavigationState extends State<LandingNavigation> {
|
|
int _currentIndex = 0;
|
|
final PageController _pageController = PageController();
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
AppState appState = getIt.get<AppState>();
|
|
return Scaffold(
|
|
body: PageView(
|
|
controller: _pageController,
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
children: [
|
|
const LandingPage(),
|
|
appState.isAuthenticated ? MedicalFilePage() : /* need add feedback page */ FeedbackPage(),
|
|
SizedBox(),
|
|
const ToDoPage(),
|
|
ServicesPage(),
|
|
],
|
|
),
|
|
bottomNavigationBar: BottomNavigation(
|
|
currentIndex: _currentIndex,
|
|
onTap: (index) {
|
|
setState(() => _currentIndex = index);
|
|
if (_currentIndex == 2) {
|
|
getIt.get<BookAppointmentsViewModel>().onTabChanged(0);
|
|
context.navigateWithName(AppRoutes.bookAppointmentPage);
|
|
return;
|
|
}
|
|
_pageController.animateToPage(index, duration: const Duration(milliseconds: 300), curve: Curves.easeInOut);
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|