GroundedLoadingDialog constructor

const GroundedLoadingDialog({
  1. Key? key,
  2. required String message,
  3. required ProImageEditorConfigs configs,
})

Creates a GroundedLoadingDialog.

This dialog displays a loading indicator with a message, using a frosted glass effect to enhance the user interface during processing operations.

Example:

GroundedLoadingDialog(
  message: 'Loading, please wait...',
  configs: myEditorConfigs,
)

Implementation

const GroundedLoadingDialog({
  super.key,
  required this.message,
  required this.configs,
});