Skip to content

Commit 18c5f03

Browse files
committed
chore: revert formatting change
1 parent e0d2373 commit 18c5f03

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

lib/src/widgets/video_track_renderer.dart

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -229,19 +229,20 @@ class _VideoTrackRendererState extends State<VideoTrackRenderer> {
229229
return _videoRendererView();
230230
}
231231
return LayoutBuilder(
232-
builder: (BuildContext context, BoxConstraints constraints) {
233-
return GestureDetector(
234-
onScaleStart: (details) {},
235-
onScaleUpdate: (details) {
236-
if (details.scale != 1.0) {
237-
setZoom(details.scale);
238-
}
239-
},
240-
onTapDown: (TapDownDetails details) =>
241-
onViewFinderTap(details, constraints),
242-
child: _videoRendererView(),
243-
);
244-
});
232+
builder: (BuildContext context, BoxConstraints constraints) {
233+
return GestureDetector(
234+
onScaleStart: (details) {},
235+
onScaleUpdate: (details) {
236+
if (details.scale != 1.0) {
237+
setZoom(details.scale);
238+
}
239+
},
240+
onTapDown: (TapDownDetails details) =>
241+
onViewFinderTap(details, constraints),
242+
child: _videoRendererView(),
243+
);
244+
},
245+
);
245246
},
246247
);
247248
}

0 commit comments

Comments
 (0)