choiceProgress property

Widget choiceProgress

Returns the indicator widget indicates the choices is processing

Implementation

Widget get choiceProgress {
  return ConstrainedBox(
    constraints: BoxConstraints(
      maxHeight: modalConfig.isPopupDialog ? 100 : double.infinity,
    ),
    child: const Center(
      child: SizedBox(
        height: 50,
        width: 50,
        child: CircularProgressIndicator(),
      ),
    ),
  );
}