ente/lib/ui/map/map_button.dart

26 lines
514 B
Dart
Raw Normal View History

import "package:flutter/material.dart";
class MapButton extends StatelessWidget {
final String heroTag;
final IconData icon;
final VoidCallback onPressed;
const MapButton({
super.key,
required this.icon,
required this.onPressed,
required this.heroTag,
});
@override
Widget build(BuildContext context) {
return FloatingActionButton(
heroTag: heroTag,
backgroundColor: Colors.white,
mini: true,
onPressed: onPressed,
child: Icon(icon),
);
}
}