show<T> static method

Future<T?> show<T>(
  1. BuildContext context, {
  2. required Rx<OngoingCall> call,
  3. required Rx<Duration> duration,
  4. ParticipantsFlowStage initial = ParticipantsFlowStage.participants,
})

Displays a ParticipantView wrapped in a ModalPopup.

Implementation

static Future<T?> show<T>(
  BuildContext context, {
  required Rx<OngoingCall> call,
  required Rx<Duration> duration,
  ParticipantsFlowStage initial = ParticipantsFlowStage.participants,
}) {
  final style = Theme.of(context).style;

  return ModalPopup.show(
    context: context,
    background: style.colors.background,
    mobilePadding: const EdgeInsets.only(bottom: 16),
    child: ParticipantView(call: call, duration: duration, initial: initial),
  );
}