diff --git a/lib/src/ui/widgets/room/camera_switch_button.dart b/lib/src/ui/widgets/room/camera_switch_button.dart index fd8da87..b86528f 100644 --- a/lib/src/ui/widgets/room/camera_switch_button.dart +++ b/lib/src/ui/widgets/room/camera_switch_button.dart @@ -32,8 +32,7 @@ class CameraSwitchButton extends StatelessWidget { Widget build(BuildContext context) { return ElevatedButton( style: ButtonStyle( - backgroundColor: - WidgetStateProperty.all(Colors.grey.withOpacity(0.9)), + backgroundColor: WidgetStateProperty.all(Colors.grey.withOpacity(0.9)), foregroundColor: WidgetStateProperty.all(Colors.white), overlayColor: WidgetStateProperty.all(Colors.grey), shape: WidgetStateProperty.all(const RoundedRectangleBorder( diff --git a/lib/src/ui/widgets/room/media_device_select_button.dart b/lib/src/ui/widgets/room/media_device_select_button.dart index e973b69..e69a20f 100644 --- a/lib/src/ui/widgets/room/media_device_select_button.dart +++ b/lib/src/ui/widgets/room/media_device_select_button.dart @@ -53,9 +53,8 @@ class MediaDeviceSelectWidget extends StatelessWidget { return Row(mainAxisSize: MainAxisSize.min, children: [ ElevatedButton( style: ButtonStyle( - backgroundColor: WidgetStateProperty.all(deviceIsOpened - ? LKColors.lkBlue - : Colors.grey.withOpacity(0.9)), + backgroundColor: WidgetStateProperty.all( + deviceIsOpened ? LKColors.lkBlue : Colors.grey.withOpacity(0.9)), foregroundColor: WidgetStateProperty.all(Colors.white), overlayColor: WidgetStateProperty.all( deviceIsOpened ? LKColors.lkLightBlue : Colors.grey), diff --git a/lib/src/ui/widgets/room/speaker_switch_button.dart b/lib/src/ui/widgets/room/speaker_switch_button.dart index 81c6e90..92ef617 100644 --- a/lib/src/ui/widgets/room/speaker_switch_button.dart +++ b/lib/src/ui/widgets/room/speaker_switch_button.dart @@ -30,8 +30,7 @@ class SpeakerSwitchButton extends StatelessWidget { Widget build(BuildContext context) { return ElevatedButton( style: ButtonStyle( - backgroundColor: - WidgetStateProperty.all(Colors.grey.withOpacity(0.9)), + backgroundColor: WidgetStateProperty.all(Colors.grey.withOpacity(0.9)), foregroundColor: WidgetStateProperty.all(Colors.white), overlayColor: WidgetStateProperty.all(Colors.grey), shape: WidgetStateProperty.all(const RoundedRectangleBorder(