Flutter-Ernaehrungsapp/lib/android/pages/nav_pages/main_page.dart

96 lines
3.0 KiB
Dart
Raw Normal View History

2023-05-30 21:03:46 +02:00
import 'package:ernaehrung/android/components/meal_page_text/days_component.dart';
import 'package:ernaehrung/android/config/statistics.dart';
import 'package:ernaehrung/android/pages/nav_pages/progress_page.dart';
import 'package:ernaehrung/android/pages/nav_pages/today_page.dart';
2023-06-03 00:40:40 +02:00
import 'package:ernaehrung/android/pages/settings.dart';
2023-04-23 13:08:04 +02:00
import 'package:flutter/material.dart';
2023-06-03 00:40:40 +02:00
import 'package:flutter_profile_picture/flutter_profile_picture.dart';
import 'package:hive/hive.dart';
import '../../models/user.dart';
2023-04-23 13:08:04 +02:00
import 'meal_plan_page.dart';
class MainPage extends StatefulWidget {
const MainPage({Key? key}) : super(key: key);
@override
MainPageState createState() => MainPageState();
2023-04-23 13:08:04 +02:00
}
class MainPageState extends State<MainPage> {
2023-04-23 13:08:04 +02:00
List pages = [
2023-06-02 19:21:06 +02:00
const TodayPage(title: 'Essensplan'),
const MealPlanPage(title: 'Gesamtübersicht'),
const ProgressPage(title: 'Statistiken')
2023-04-23 13:08:04 +02:00
];
int currentIndex = 0;
2023-05-29 22:04:44 +02:00
2023-06-03 00:51:26 +02:00
void onTap(int index) async {
2023-04-23 13:08:04 +02:00
setState(() {
currentIndex = index;
2023-06-03 00:40:40 +02:00
if (currentIndex == 1) {
StatisticsService.instance
.updateStatisticsTodayBoxByTimespan(TimeSpan.day);
} else if (currentIndex == 2) {
StatisticsService.instance.updateProgressBoxValues();
2023-05-30 21:03:46 +02:00
}
pages[currentIndex];
2023-04-23 13:08:04 +02:00
});
}
2023-04-23 13:08:04 +02:00
@override
Widget build(BuildContext context) {
2023-06-03 00:40:40 +02:00
final Box box = Hive.box<User>("USER_BOX");
2023-04-23 13:08:04 +02:00
return Scaffold(
2023-06-02 01:42:56 +02:00
extendBodyBehindAppBar: false,
2023-04-23 13:08:04 +02:00
appBar: AppBar(
2023-06-03 00:40:40 +02:00
title: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
2023-06-02 18:38:19 +02:00
pages[currentIndex].title,
style: const TextStyle(
color: Colors.black
),
),
2023-06-03 00:40:40 +02:00
ElevatedButton(
onPressed: () async {
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const SettingsPage()),
);
},
child: ProfilePicture(
name: "${box.get("FIRST_NAME_FIELD")}",
radius: 16,
fontsize: 14,
))
],
2023-06-02 18:38:19 +02:00
),
2023-06-02 01:42:56 +02:00
backgroundColor: Colors.transparent,
foregroundColor: Colors.grey.shade400,
elevation: 0,
2023-05-29 22:04:44 +02:00
),
body: Padding(
padding: const EdgeInsets.symmetric(vertical: 0, horizontal: 8),
child: pages[currentIndex],
2023-04-23 13:08:04 +02:00
),
bottomNavigationBar: BottomNavigationBar(
currentIndex: currentIndex,
selectedItemColor: Colors.black54,
unselectedItemColor: Colors.grey.withOpacity(0.5),
showSelectedLabels: false,
showUnselectedLabels: false,
elevation: 0,
onTap: onTap,
items: const [
2023-05-29 22:04:44 +02:00
BottomNavigationBarItem(icon: Icon(Icons.today), label: 'Today'),
2023-04-23 13:08:04 +02:00
BottomNavigationBarItem(
2023-05-29 22:04:44 +02:00
icon: Icon(Icons.area_chart), label: 'Progress'),
BottomNavigationBarItem(icon: Icon(Icons.apple), label: 'Meal Plan'),
2023-04-23 13:08:04 +02:00
],
),
);
}
}