[MessageWidget] Disable onLongPress for deleted message
Signed-off-by: Sahil Kumar <[email protected]>
This commit is contained in:
@@ -291,7 +291,9 @@ class _MessageWidgetState extends State<MessageWidget> {
|
||||
type: MaterialType.transparency,
|
||||
child: Portal(
|
||||
child: InkWell(
|
||||
onLongPress: () => onLongPress(context),
|
||||
onLongPress: widget.message.isDeleted && !isFailedState
|
||||
? null
|
||||
: () => onLongPress(context),
|
||||
child: Padding(
|
||||
padding: widget.padding ?? EdgeInsets.all(8),
|
||||
child: Transform(
|
||||
|
||||
Reference in New Issue
Block a user