File tree 2 files changed +6
-3
lines changed
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 {
13
13
Key key,
14
14
this .objectFit = RTCVideoViewObjectFit .RTCVideoViewObjectFitContain ,
15
15
this .mirror = false ,
16
- this .filterQuality = FilterQuality .low
16
+ this .filterQuality = FilterQuality .low,
17
17
}) : assert (objectFit != null ),
18
18
assert (mirror != null ),
19
19
assert (filterQuality != null ),
@@ -58,7 +58,10 @@ class RTCVideoView extends StatelessWidget {
58
58
transform: Matrix4 .identity ()..rotateY (mirror ? - pi : 0.0 ),
59
59
alignment: FractionalOffset .center,
60
60
child: videoRenderer.textureId != null
61
- ? Texture (textureId: videoRenderer.textureId, filterQuality: filterQuality)
61
+ ? Texture (
62
+ textureId: videoRenderer.textureId,
63
+ filterQuality: filterQuality,
64
+ )
62
65
: Container (),
63
66
),
64
67
),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class RTCVideoView extends StatefulWidget {
10
10
Key key,
11
11
this .objectFit = RTCVideoViewObjectFit .RTCVideoViewObjectFitContain ,
12
12
this .mirror = false ,
13
- this .filterQuality = FilterQuality .low
13
+ this .filterQuality = FilterQuality .low,
14
14
}) : assert (objectFit != null ),
15
15
assert (mirror != null ),
16
16
assert (filterQuality != null ),
You can’t perform that action at this time.
0 commit comments