fayaz07 / progress_dialog

A light weight library to easily manage a progress dialog with simple steps whenever you need to do it. You can easily show and hide it.

Home Page:https://fayaz07.github.io/progress_dialog/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Show only circular indicator

huiwen0212 opened this issue · comments

Hi, is it possible to just the loading indicator without the message and center it?

check the child property

What do I need to do in the child property to remove the Text widget and also center the circularIndicator? Sorry I am new to flutter

Yeah, that's okay

pr = ProgressDialog(
      context,
      type: ProgressDialogType.Normal,
      isDismissible: true,
      /// your body here
      customBody: CircularProgressIndicator(
        valueColor: AlwaysStoppedAnimation<Color>(Colors.blueAccent),
        backgroundColor: Colors.white,
      ),
    );