mmcc007/modal_progress_hud

modal_progress_hud

omarshokry1811 opened this issue · 1 comments

color doesn't change even i changed the property

gipic commented

That's right! Color property is not working!!!
Actually I have just discovered that color property refers to background color and not the indicator itself.

To change color:

body: ModalProgressHUD(
   progressIndicator: CircularProgressIndicator(
      valueColor: AlwaysStoppedAnimation<Color>(Colors.green),
    ),
    inAsyncCall: showSpinner,
    child: ...
)