diff --git a/example/lib/widgets/participant.dart b/example/lib/widgets/participant.dart index 8e23cd8..070f6e5 100644 --- a/example/lib/widgets/participant.dart +++ b/example/lib/widgets/participant.dart @@ -129,7 +129,7 @@ abstract class _ParticipantWidgetState // Video InkWell( onTap: () => setState(() => _visible = !_visible), - child: activeVideoTrack != null + child: activeVideoTrack != null && !activeVideoTrack!.muted ? VideoTrackRenderer( activeVideoTrack!, fit: RTCVideoViewObjectFit.RTCVideoViewObjectFitContain,