Skip to content

Commit

Permalink
update.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudwebrtc committed Oct 26, 2024
1 parent 8b73179 commit 1265b05
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lib/src/ui/widgets/room/camera_switch_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CameraSwitchButton extends StatelessWidget {
Widget build(BuildContext context) {
return ElevatedButton(
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all(Colors.grey.withOpacity(0.6)),
backgroundColor: WidgetStateProperty.all(Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor: WidgetStateProperty.all(Colors.grey),
shape: WidgetStateProperty.all(const RoundedRectangleBorder(
Expand Down
2 changes: 1 addition & 1 deletion lib/src/ui/widgets/room/chat_toggle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class ChatToggleWidget extends StatelessWidget {
return ElevatedButton(
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all(
isChatOpen ? LKColors.lkBlue : Colors.grey.withOpacity(0.6)),
isChatOpen ? LKColors.lkBlue : Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor: WidgetStateProperty.all(
isChatOpen ? LKColors.lkLightBlue : Colors.grey),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/ui/widgets/room/disconnect_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class DisconnectButtonWidget extends StatelessWidget {
return ElevatedButton(
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all(
connected ? Colors.red : Colors.grey.withOpacity(0.6)),
connected ? Colors.red : Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor:
WidgetStateProperty.all(connected ? Colors.redAccent : Colors.grey),
Expand Down
4 changes: 2 additions & 2 deletions lib/src/ui/widgets/room/media_device_select_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MediaDeviceSelectWidget extends StatelessWidget {
ElevatedButton(
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all(
deviceIsOpened ? LKColors.lkBlue : Colors.grey.withOpacity(0.6)),
deviceIsOpened ? LKColors.lkBlue : Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor: WidgetStateProperty.all(
deviceIsOpened ? LKColors.lkLightBlue : Colors.grey),
Expand Down Expand Up @@ -78,7 +78,7 @@ class MediaDeviceSelectWidget extends StatelessWidget {
0, ((deviceList.isNotEmpty ? deviceList.length : 1) * -55.0)),
style: ButtonStyle(
backgroundColor:
WidgetStateProperty.all(Colors.grey.withOpacity(0.6)),
WidgetStateProperty.all(Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor: WidgetStateProperty.all(Colors.grey),
elevation: WidgetStateProperty.all(20),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/ui/widgets/room/screenshare_toggle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class ScreenShareToggleWidget extends StatelessWidget {
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all(screenShareEnabled
? LKColors.lkBlue
: Colors.grey.withOpacity(0.6)),
: Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor: WidgetStateProperty.all(
screenShareEnabled ? LKColors.lkLightBlue : Colors.grey),
Expand Down
2 changes: 1 addition & 1 deletion lib/src/ui/widgets/room/speaker_switch_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class SpeakerSwitchButton extends StatelessWidget {
Widget build(BuildContext context) {
return ElevatedButton(
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all(Colors.grey.withOpacity(0.6)),
backgroundColor: WidgetStateProperty.all(Colors.grey.withOpacity(0.9)),
foregroundColor: WidgetStateProperty.all(Colors.white),
overlayColor: WidgetStateProperty.all(Colors.grey),
shape: WidgetStateProperty.all(const RoundedRectangleBorder(
Expand Down

0 comments on commit 1265b05

Please sign in to comment.