import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:hive/hive.dart'; import '../models/food.dart'; final List emptyList = []; void setupTodayBox() async{ final todayBox = Hive.box(dotenv.env['MEALPLAN_BOX']!); putIfKeyNotExists(todayBox, 'FRÜHSTÜCK', []); putIfKeyNotExists(todayBox, 'MITTAGESSEN', []); putIfKeyNotExists(todayBox, 'ABENDESSEN', []); } void putIfKeyNotExists(Box box, String key, List value) { if (!box.containsKey(key)) { box.put(key, value); } } String getFormatedTodayDate(){ return DateTime.now().toString().substring(0,10); }