fix: Method being called during build (#317)
* method call bug fix * dartfmt
This commit is contained in:
@@ -554,7 +554,7 @@ class _ChannelListViewState extends State<ChannelListView> {
|
|||||||
ChannelPreview(
|
ChannelPreview(
|
||||||
onLongPress: widget.onChannelLongPress,
|
onLongPress: widget.onChannelLongPress,
|
||||||
channel: channel,
|
channel: channel,
|
||||||
onImageTap: widget.onImageTap?.call(channel),
|
onImageTap: () => widget.onImageTap?.call(channel),
|
||||||
onTap: (channel) => onTap(channel, widget.channelWidget),
|
onTap: (channel) => onTap(channel, widget.channelWidget),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user