2024-09-06 23:38:03 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
class ScanFoodFloatingButton extends StatelessWidget {
|
2024-09-07 23:57:40 +00:00
|
|
|
final Function() onPressed;
|
|
|
|
const ScanFoodFloatingButton({super.key, required this.onPressed});
|
2024-09-06 23:38:03 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return FloatingActionButton(
|
|
|
|
heroTag: "scanFoodFAB",
|
|
|
|
child: const Icon(Icons.barcode_reader),
|
2024-09-07 23:57:40 +00:00
|
|
|
onPressed: () {
|
|
|
|
onPressed();
|
2024-09-06 23:38:03 +00:00
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|