Documents

This commit is contained in:
Hillel Coren 2019-07-19 13:43:59 +03:00
parent ff605b0bde
commit 59d2ebaebb
2 changed files with 2 additions and 6 deletions

View File

@ -26,9 +26,7 @@ class ActionMenuButton extends StatelessWidget {
return IconButton(
onPressed: null,
icon: SizedBox(
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
),
child: CircularProgressIndicator(),
),
);
}

View File

@ -29,9 +29,7 @@ class ActionIconButton extends StatelessWidget {
return IconButton(
onPressed: null,
icon: SizedBox(
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
),
child: CircularProgressIndicator(),
),
);
}