2025-06-25 11:08:02 -05:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
|
|
|
|
|
|
|
|
|
class BaseActionButton extends StatelessWidget {
|
|
|
|
|
const BaseActionButton({
|
|
|
|
|
super.key,
|
|
|
|
|
required this.label,
|
|
|
|
|
required this.iconData,
|
|
|
|
|
this.onPressed,
|
|
|
|
|
this.onLongPressed,
|
2025-06-27 08:33:46 -05:00
|
|
|
this.maxWidth = 90.0,
|
2025-06-25 11:08:02 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
final String label;
|
|
|
|
|
final IconData iconData;
|
2025-06-27 08:33:46 -05:00
|
|
|
final double maxWidth;
|
2025-06-25 11:08:02 -05:00
|
|
|
final void Function()? onPressed;
|
|
|
|
|
final void Function()? onLongPressed;
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
2025-06-27 08:33:46 -05:00
|
|
|
final minWidth = context.isMobile ? context.width / 4.5 : 75.0;
|
2025-06-25 11:08:02 -05:00
|
|
|
|
2025-06-27 08:33:46 -05:00
|
|
|
return ConstrainedBox(
|
|
|
|
|
constraints: BoxConstraints(
|
|
|
|
|
maxWidth: maxWidth,
|
2025-06-25 11:08:02 -05:00
|
|
|
),
|
2025-06-27 08:33:46 -05:00
|
|
|
child: MaterialButton(
|
|
|
|
|
padding: const EdgeInsets.all(10),
|
|
|
|
|
shape: const RoundedRectangleBorder(
|
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(20)),
|
|
|
|
|
),
|
|
|
|
|
onPressed: onPressed,
|
|
|
|
|
onLongPress: onLongPressed,
|
|
|
|
|
minWidth: minWidth,
|
|
|
|
|
child: Column(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
children: [
|
|
|
|
|
Icon(iconData, size: 24),
|
|
|
|
|
const SizedBox(height: 8),
|
|
|
|
|
Text(
|
|
|
|
|
label,
|
|
|
|
|
style:
|
|
|
|
|
const TextStyle(fontSize: 14.0, fontWeight: FontWeight.w400),
|
|
|
|
|
maxLines: 3,
|
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
2025-06-25 11:08:02 -05:00
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|