Set the correct width for progress bar within circular image widget

This commit is contained in:
Vishnu Mohandas 2020-08-07 23:42:31 +05:30
parent 127dcb7315
commit 1d7840f37a

View file

@ -27,7 +27,10 @@ class CircularNetworkImageWidget extends StatelessWidget {
),
),
),
placeholder: (context, url) => loadWidget,
placeholder: (context, url) => Container(
width: _size,
child: loadWidget,
),
);
}
}