41 lines
1.3 KiB
Dart
41 lines
1.3 KiB
Dart
import 'package:ernaehrung/android/components/card/card_food_item_component.dart';
|
|
import 'package:ernaehrung/android/models/food.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class CardDataFoodComponent extends StatelessWidget {
|
|
final List<Food> foods;
|
|
|
|
const CardDataFoodComponent(this.foods, {Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
height: 180,
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 8),
|
|
child: SingleChildScrollView(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
ListView.builder(
|
|
physics: const NeverScrollableScrollPhysics(),
|
|
shrinkWrap: true,
|
|
itemCount: foods.length,
|
|
itemBuilder: (context, i) {
|
|
return Column(
|
|
children: [
|
|
CardFoodItemComponent(foods[i]),
|
|
Divider(
|
|
color: Colors.grey.shade300,
|
|
thickness: 1.2,
|
|
)
|
|
],
|
|
);
|
|
})
|
|
],
|
|
),
|
|
)),
|
|
);
|
|
}
|
|
}
|