File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class RTCVideoView extends StatelessWidget {
1313 Key key,
1414 this .objectFit = RTCVideoViewObjectFit .RTCVideoViewObjectFitContain ,
1515 this .mirror = false ,
16- this .filterQuality = FilterQuality .low
16+ this .filterQuality = FilterQuality .low,
1717 }) : assert (objectFit != null ),
1818 assert (mirror != null ),
1919 assert (filterQuality != null ),
@@ -58,7 +58,10 @@ class RTCVideoView extends StatelessWidget {
5858 transform: Matrix4 .identity ()..rotateY (mirror ? - pi : 0.0 ),
5959 alignment: FractionalOffset .center,
6060 child: videoRenderer.textureId != null
61- ? Texture (textureId: videoRenderer.textureId, filterQuality: filterQuality)
61+ ? Texture (
62+ textureId: videoRenderer.textureId,
63+ filterQuality: filterQuality,
64+ )
6265 : Container (),
6366 ),
6467 ),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class RTCVideoView extends StatefulWidget {
1010 Key key,
1111 this .objectFit = RTCVideoViewObjectFit .RTCVideoViewObjectFitContain ,
1212 this .mirror = false ,
13- this .filterQuality = FilterQuality .low
13+ this .filterQuality = FilterQuality .low,
1414 }) : assert (objectFit != null ),
1515 assert (mirror != null ),
1616 assert (filterQuality != null ),
You can’t perform that action at this time.
0 commit comments