bump version (#162)

This commit is contained in:
Salvatore Giordano
2020-12-02 12:14:33 -04:00
committed by GitHub
parent aa2ee31d4d
commit 9068f38659
3 changed files with 10 additions and 4 deletions
+5 -3
View File
@@ -329,9 +329,11 @@ class _ChannelListViewState extends State<ChannelListView>
onTap: () {
onTap(channel, widget.channelWidget);
},
onLongPress: () {
widget.onChannelLongPress(channel);
},
onLongPress: widget.onChannelLongPress != null
? () {
widget.onChannelLongPress(channel);
}
: null,
),
),
),