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

21 lines
576 B
Dart
Raw Normal View History

2023-06-25 14:43:07 +02:00
import 'package:ernaehrung/pages/nav_pages/subpages/today_page/sub_components/meals.dart';
2023-05-29 12:08:46 +02:00
import 'package:flutter/material.dart';
2023-06-25 14:43:07 +02:00
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
}
}