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

24 lines
774 B
Dart
Raw Normal View History

2023-05-29 22:04:44 +02:00
import 'package:ernaehrung/android/components/card/card_component.dart';
2023-06-16 08:34:41 +02:00
import 'package:ernaehrung/android/components/meals.dart';
import 'package:ernaehrung/android/config/statistics.dart';
2023-05-29 12:08:46 +02:00
import 'package:flutter/material.dart';
2023-06-01 12:14:23 +02:00
import 'package:flutter_dotenv/flutter_dotenv.dart';
2023-05-29 22:04:44 +02:00
import 'package:hive_flutter/adapters.dart';
2023-05-29 12:08:46 +02:00
class TodayPage extends StatefulWidget {
final String title;
final Color backgroundColor = const Color(0xff47a44b);
2023-06-16 08:34:41 +02:00
2023-05-29 12:08:46 +02:00
const TodayPage({Key? key, required this.title}) : super(key: key);
2023-05-29 22:04:44 +02:00
2023-05-29 12:08:46 +02:00
@override
State<TodayPage> createState() => _TodayPageState();
}
class _TodayPageState extends State<TodayPage> {
@override
Widget build(BuildContext context) {
2023-06-16 08:34:41 +02:00
return Scaffold(body: SingleChildScrollView(child: MealsComponent()));
2023-05-29 12:08:46 +02:00
}
}