build method

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

Builds the Widget representation of this CallButton.

Implementation

@override
Widget build({bool hinted = true, bool big = false, bool expanded = false}) {
  return Obx(() {
    bool isScreen =
        c.screenShareState.value == LocalTrackState.enabled ||
        c.screenShareState.value == LocalTrackState.enabling;
    return CallButtonWidget(
      hint: hint,
      asset:
          isScreen ? SvgIcons.callScreenShareOff : SvgIcons.callScreenShareOn,
      hinted: hinted,
      expanded: expanded,
      big: big,
      constrained: c.isMobile,
      onPressed: () => c.toggleScreenShare(router.context!),
    );
  });
}