File tree 1 file changed +11
-11
lines changed 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -49,19 +49,19 @@ class RTCVideoView extends StatelessWidget {
49
49
return SizedBox (
50
50
width: constraints.maxHeight * value.aspectRatio,
51
51
height: constraints.maxHeight,
52
- child: Transform (
53
- transform: Matrix4 .identity ()..rotateY (mirror ? - pi : 0.0 ),
54
- alignment: FractionalOffset .center,
55
- child: value.renderVideo
56
- ? Texture (
57
- textureId: videoRenderer.textureId! ,
58
- filterQuality: filterQuality,
59
- )
60
- : child,
61
- ),
52
+ child: child,
62
53
);
63
54
},
64
- child: placeholderBuilder? .call (context) ?? Container (),
55
+ child: Transform (
56
+ transform: Matrix4 .identity ()..rotateY (mirror ? - pi : 0.0 ),
57
+ alignment: FractionalOffset .center,
58
+ child: videoRenderer.renderVideo
59
+ ? Texture (
60
+ textureId: videoRenderer.textureId! ,
61
+ filterQuality: filterQuality,
62
+ )
63
+ : placeholderBuilder? .call (context) ?? Container (),
64
+ ),
65
65
),
66
66
),
67
67
),
You can’t perform that action at this time.
0 commit comments