GroundedLoadingDialog constructor
const
GroundedLoadingDialog({
- Key? key,
- required String message,
- 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,
});