10000 Style fixes · MUBUSHER/flutter-webrtc@7ad9fc9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7ad9fc9

Browse files
committed
Style fixes
1 parent 993f717 commit 7ad9fc9

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

example/lib/main.dart

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff 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
);

lib/RTCVideoView.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDif 8C74 f line numberDiff 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
}

0 commit comments

Comments
 (0)
0