We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5427e4f commit d76a3abCopy full SHA for d76a3ab
lib/RTCVideoView.dart
@@ -140,16 +140,15 @@ class _RTCVideoViewState extends State<RTCVideoView> {
140
height *= scale;
141
}
142
143
- return new Center(
144
- child: new Container(
145
- child: new Center(
146
- child: (this.renderer._textureId == null || this.renderer._srcObject == null)
147
- ? new Container()
148
- : new Container(
149
- width: width,
150
- height: height,
151
- child: new Texture(textureId: this.renderer._textureId),
152
- )
153
- )));
+ return
+ new Center(
+ child: (this.renderer._textureId == null || this.renderer._srcObject == null)
+ ? new Container()
+ : new Container(
+ width: width,
+ height: height,
+ child: new Texture(textureId: this.renderer._textureId),
+ )
+ );
154
155
0 commit comments