14 lines
296 B
Dart
14 lines
296 B
Dart
|
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();
|
||
|
}
|
||
|
}
|