Set the correct width for progress bar within circular image widget
This commit is contained in:
parent
127dcb7315
commit
1d7840f37a
1 changed files with 4 additions and 1 deletions
|
@ -27,7 +27,10 @@ class CircularNetworkImageWidget extends StatelessWidget {
|
|||
),
|
||||
),
|
||||
),
|
||||
placeholder: (context, url) => loadWidget,
|
||||
placeholder: (context, url) => Container(
|
||||
width: _size,
|
||||
child: loadWidget,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue