calorimeter/lib/food_entry_widget.dart

29 lines
820 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
2024-06-09 12:42:17 +00:00
import 'package:kalodings/food_entry_bloc.dart';
import 'package:kalodings/row_with_spacers_widget.dart';
class FoodEntryWidget extends StatelessWidget {
2024-06-09 12:42:17 +00:00
final FoodEntry entry;
2024-06-09 17:06:10 +00:00
final Function(BuildContext context) onDelete;
2024-06-01 10:41:58 +00:00
2024-06-09 17:06:10 +00:00
const FoodEntryWidget(
{super.key, required this.entry, required this.onDelete});
@override
Widget build(BuildContext context) {
2024-06-09 12:42:17 +00:00
return Card(
child: RowWidgetWithSpacers(
Text(entry.name),
Text(entry.mass.toString()),
Text(entry.kcalPerMass.toString()),
Text((entry.mass * entry.kcalPerMass / 100).toString()),
2024-06-09 17:06:10 +00:00
ElevatedButton(
2024-06-09 12:42:17 +00:00
onPressed: () {
2024-06-09 17:06:10 +00:00
onDelete(context);
2024-06-09 12:42:17 +00:00
},
2024-06-09 17:06:10 +00:00
child: const Icon(Icons.delete_forever_rounded)),
2024-06-09 12:42:17 +00:00
),
);
}
}