add onLongPress on channel when using custom channel builder

This commit is contained in:
Salvatore Giordano
2020-12-02 17:16:11 +01:00
parent 94fe925611
commit c145ed0971
+5
View File
@@ -481,6 +481,11 @@ class _ChannelListViewState extends State<ChannelListView>
onTap: () {
onTap(channel, widget.channelWidget);
},
onLongPress: widget.onChannelLongPress != null
? () {
widget.onChannelLongPress(channel);
}
: null,
),
),
),