24 lines
774 B
Dart
24 lines
774 B
Dart
import 'package:ernaehrung/android/components/card/card_component.dart';
|
|
import 'package:ernaehrung/android/components/meals.dart';
|
|
import 'package:ernaehrung/android/config/statistics.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_dotenv/flutter_dotenv.dart';
|
|
import 'package:hive_flutter/adapters.dart';
|
|
|
|
class TodayPage extends StatefulWidget {
|
|
final String title;
|
|
final Color backgroundColor = const Color(0xff47a44b);
|
|
|
|
const TodayPage({Key? key, required this.title}) : super(key: key);
|
|
|
|
@override
|
|
State<TodayPage> createState() => _TodayPageState();
|
|
}
|
|
|
|
class _TodayPageState extends State<TodayPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(body: SingleChildScrollView(child: MealsComponent()));
|
|
}
|
|
}
|