Fix styling for loading indicator in nav menu
This commit is contained in:
parent
0b6a4fff95
commit
0104bde234
|
|
@ -967,9 +967,14 @@ class _DrawerTileState extends State<DrawerTile> {
|
|||
? iconWidget
|
||||
: isLoading
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(left: 10),
|
||||
padding: const EdgeInsets.only(
|
||||
left: 10,
|
||||
right: 8,
|
||||
),
|
||||
child: SizedBox(
|
||||
child: CircularProgressIndicator(),
|
||||
child: CircularProgressIndicator(
|
||||
color: state.accentColor,
|
||||
),
|
||||
width: 22,
|
||||
height: 22,
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue