File tree Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Expand file tree Collapse file tree 2 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -140,19 +140,19 @@ class _MyAppState extends State<MyApp> {
140140 child: new Column (
141141 crossAxisAlignment: CrossAxisAlignment .start,
142142 children: [
143- new Text ('Loopback demo. ' ),
144- new Container (
145- width: 320.0 ,
146- height: 240.0 ,
147- child: new RTCVideoView (_localRenderer),
148- ),
149- new Text ( 'Local video' ),
150- new Container (
151- width : 320.0 ,
152- height : 240 .0 ,
153- child : new RTCVideoView (_remoteRenderer) ,
154- ),
155- new Text ( 'Remote video' ),
143+ new Text ('Local video: ' ),
144+ new Container (
145+ width: 320.0 ,
146+ height: 240.0 ,
147+ child: new RTCVideoView (_localRenderer),
148+ ),
149+
150+ new Text ( 'Remote video:' ),
151+ new Container (
152+ width : 320 .0 ,
153+ height : 240.0 ,
154+ child : new RTCVideoView (_remoteRenderer ),
155+ ),
156156 ])),
157157 ),
158158 );
Original file line number Diff line number Diff line change @@ -145,10 +145,10 @@ class _RTCVideoViewState extends State<RTCVideoView> {
145145 child: (this .renderer._textureId == null || this .renderer._srcObject == null )
146146 ? new Container ()
147147 : new Container (
148- width: width,
149- height: height,
150- child: new Texture (textureId: this .renderer._textureId),
151- )
152- );
148+ width: width,
149+ height: height,
150+ child: new Texture (textureId: this .renderer._textureId),
151+ )
152+ );
153153 }
154154}
You can’t perform that action at this time.
0 commit comments