@@ -139,8 +139,8 @@ class _CallScreenState extends State<CallScreen> {
139
139
layoutMode: _currentLayoutMode,
140
140
pictureInPictureConfiguration:
141
141
const PictureInPictureConfiguration (
142
- enablePictureInPicture: true ,
143
- ),
142
+ enablePictureInPicture: true ,
143
+ ),
144
144
callParticipantsWidgetBuilder: (context, call) {
145
145
return Stack (
146
146
children: [
@@ -223,8 +223,8 @@ class _CallScreenState extends State<CallScreen> {
223
223
selector: (state) => state.localParticipant != null ,
224
224
builder: (context, hasLocalParticipant) =>
225
225
hasLocalParticipant
226
- ? FlipCameraOption (call: call)
227
- : const SizedBox .shrink (),
226
+ ? FlipCameraOption (call: call)
227
+ : const SizedBox .shrink (),
228
228
),
229
229
],
230
230
),
@@ -258,8 +258,8 @@ class _CallScreenState extends State<CallScreen> {
258
258
desktopScreenSelectorBuilder:
259
259
// ignore: avoid_redundant_argument_values
260
260
_useCustomDesktopScreenShareOption
261
- ? _customDesktopScreenShareSelector
262
- : null ,
261
+ ? _customDesktopScreenShareSelector
262
+ : null ,
263
263
),
264
264
ToggleMicrophoneOption (
265
265
call: call,
@@ -409,13 +409,13 @@ Future<DesktopCapturerSource?> _customDesktopScreenShareSelector(
409
409
builder:
410
410
(BuildContext context, ScreenSelectorState value, Widget ? child) =>
411
411
Padding (
412
- padding: const EdgeInsets .symmetric (horizontal: 16 ),
413
- child: ThumbnailGrid (
414
- sources: value.sources.values.toList (),
415
- selectedSource: value.selectedSource,
416
- onSelectSource: (source) => Navigator .pop (context, source),
417
- ),
418
- ),
412
+ padding: const EdgeInsets .symmetric (horizontal: 16 ),
413
+ child: ThumbnailGrid (
414
+ sources: value.sources.values.toList (),
415
+ selectedSource: value.selectedSource,
416
+ onSelectSource: (source) => Navigator .pop (context, source),
417
+ ),
418
+ ),
419
419
);
420
420
},
421
421
);
0 commit comments