💄 Optimized signal indicator
This commit is contained in:
parent
7e8993fbd2
commit
7d45c06302
@ -217,9 +217,7 @@ class InteractiveParticipantWidget extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Material(
|
return GestureDetector(
|
||||||
color: Colors.transparent,
|
|
||||||
child: GestureDetector(
|
|
||||||
child: Container(
|
child: Container(
|
||||||
width: width,
|
width: width,
|
||||||
height: height,
|
height: height,
|
||||||
@ -238,7 +236,6 @@ class InteractiveParticipantWidget extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:get/get.dart';
|
||||||
import 'package:livekit_client/livekit_client.dart';
|
import 'package:livekit_client/livekit_client.dart';
|
||||||
|
|
||||||
class ParticipantInfoWidget extends StatelessWidget {
|
class ParticipantInfoWidget extends StatelessWidget {
|
||||||
@ -34,38 +35,42 @@ class ParticipantInfoWidget extends StatelessWidget {
|
|||||||
style: const TextStyle(color: Colors.white),
|
style: const TextStyle(color: Colors.white),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
const SizedBox(width: 5),
|
||||||
isScreenShare
|
isScreenShare
|
||||||
? const Padding(
|
? const Icon(
|
||||||
padding: EdgeInsets.only(left: 5),
|
|
||||||
child: Icon(
|
|
||||||
Icons.monitor,
|
Icons.monitor,
|
||||||
color: Colors.white,
|
color: Colors.white,
|
||||||
size: 16,
|
size: 16,
|
||||||
),
|
|
||||||
)
|
)
|
||||||
: Padding(
|
: Icon(
|
||||||
padding: const EdgeInsets.only(left: 5),
|
|
||||||
child: Icon(
|
|
||||||
audioAvailable ? Icons.mic : Icons.mic_off,
|
audioAvailable ? Icons.mic : Icons.mic_off,
|
||||||
color: audioAvailable ? Colors.white : Colors.red,
|
color: audioAvailable ? Colors.white : Colors.red,
|
||||||
size: 16,
|
size: 16,
|
||||||
),
|
),
|
||||||
),
|
const SizedBox(width: 3),
|
||||||
if (connectionQuality != ConnectionQuality.unknown)
|
if (connectionQuality != ConnectionQuality.unknown)
|
||||||
Padding(
|
Icon(
|
||||||
padding: const EdgeInsets.only(left: 5),
|
{
|
||||||
child: Icon(
|
ConnectionQuality.excellent: Icons.signal_cellular_alt,
|
||||||
connectionQuality == ConnectionQuality.poor
|
ConnectionQuality.good: Icons.signal_cellular_alt_2_bar,
|
||||||
? Icons.wifi_off_outlined
|
ConnectionQuality.poor: Icons.signal_cellular_alt_1_bar,
|
||||||
: Icons.wifi,
|
}[connectionQuality],
|
||||||
color: {
|
color: {
|
||||||
ConnectionQuality.excellent: Colors.green,
|
ConnectionQuality.excellent: Colors.green,
|
||||||
ConnectionQuality.good: Colors.orange,
|
ConnectionQuality.good: Colors.orange,
|
||||||
ConnectionQuality.poor: Colors.red,
|
ConnectionQuality.poor: Colors.red,
|
||||||
}[connectionQuality],
|
}[connectionQuality],
|
||||||
size: 16,
|
size: 16,
|
||||||
|
)
|
||||||
|
else
|
||||||
|
const SizedBox(
|
||||||
|
width: 12,
|
||||||
|
height: 12,
|
||||||
|
child: CircularProgressIndicator(
|
||||||
|
color: Colors.white,
|
||||||
|
strokeWidth: 2,
|
||||||
),
|
),
|
||||||
),
|
).paddingAll(3),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user