build method

  1. @override
Widget build({
  1. bool hinted = true,
  2. bool blur = false,
  3. bool big = false,
  4. bool expanded = false,
  5. bool opaque = false,
})
override

Builds the Widget representation of this CallButton.

Implementation

@override
Widget build({
  bool hinted = true,
  bool blur = false,
  bool big = false,
  bool expanded = false,
  bool opaque = false,
}) {
  Widget button(SvgData asset, void Function()? onPressed) {
    return CallButtonWidget(
      hint: hint,
      asset: asset,
      hinted: hinted,
      expanded: expanded,
      withBlur: blur,
      big: big,
      constrained: c.isMobile,
      opaque: opaque,
      onPressed: onPressed,
    );
  }

  // Web seems to decide for itself the output device source on mobile.
  if (PlatformUtils.isMobile && PlatformUtils.isWeb) {
    return button(SvgIcons.callIncomingAudioOn, null);
  } else {
    return Obx(() {
      final SvgData asset = switch (c.speaker) {
        AudioSpeakerKind.earpiece => SvgIcons.callIncomingAudioOff,
        AudioSpeakerKind.speaker => SvgIcons.callIncomingAudioOn,
        AudioSpeakerKind.headphones => SvgIcons.callHeadphones,
      };

      return button(asset, c.toggleSpeaker);
    });
  }
}