|
import 'package:flutter/material.dart';
|
|
|
|
|
|
class CardItemComponent extends StatelessWidget {
|
|
final String title;
|
|
final int calories;
|
|
const CardItemComponent(Image? image, this.title, this.calories, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column();
|
|
}
|
|
}
|