Flutter – How to resize the CircleAvatar Widget?
I want to change the size of my CircleAvatar widget, but regardless of whether I use a SizedBox or the radius attribute, it does not change its size. Widget build(BuildContext context) { return SizedBox( width: widget.imageSize, height: widget.imageSize, // does…