ESProgressIndicator constructor

ESProgressIndicator({
  1. Key? key,
})

A CircularProgressIndicator can be used to display while processing in background

Implementation

ESProgressIndicator({Key? key})
    : super(
        key: key,
        content: Row(
          children: const <Widget>[
            Text('Please wait ... !'),
            Spacer(),
            CircularProgressIndicator(),
          ],
        ),
      );