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
|
? iconWidget
|
||||||
: isLoading
|
: isLoading
|
||||||
? Padding(
|
? Padding(
|
||||||
padding: const EdgeInsets.only(left: 10),
|
padding: const EdgeInsets.only(
|
||||||
|
left: 10,
|
||||||
|
right: 8,
|
||||||
|
),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
child: CircularProgressIndicator(),
|
child: CircularProgressIndicator(
|
||||||
|
color: state.accentColor,
|
||||||
|
),
|
||||||
width: 22,
|
width: 22,
|
||||||
height: 22,
|
height: 22,
|
||||||
),
|
),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue