mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-08-11 18:26:27 +10:00
26 lines
571 B
Dart
26 lines
571 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../l10n/l10n.dart';
|
|
|
|
class ImageSendButton extends StatelessWidget {
|
|
final bool enabled;
|
|
final VoidCallback onPressed;
|
|
final String? tooltip;
|
|
|
|
const ImageSendButton({
|
|
super.key,
|
|
required this.enabled,
|
|
required this.onPressed,
|
|
this.tooltip,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return IconButton(
|
|
icon: Icon(enabled ? Icons.image : Icons.image_outlined),
|
|
onPressed: enabled ? onPressed : null,
|
|
tooltip: tooltip ?? context.l10n.chat_sendImage,
|
|
);
|
|
}
|
|
}
|