2023-06-16 08:34:41 +02:00
|
|
|
import 'package:ernaehrung/android/components/meals.dart';
|
2023-05-29 12:08:46 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|