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> {
140
140
child: new Column (
141
141
crossAxisAlignment: CrossAxisAlignment .start,
142
142
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
+ ),
156
156
])),
157
157
),
158
158
);
Original file line number Dif
8C74
f line number Diff line change @@ -145,10 +145,10 @@ class _RTCVideoViewState extends State<RTCVideoView> {
145
145
child: (this .renderer._textureId == null || this .renderer._srcObject == null )
146
146
? new Container ()
147
147
: 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
+ );
153
153
}
154
154
}
You can’t perform that action at this time.
0 commit comments