fix pro pic alignmnt

This commit is contained in:
2025-09-10 15:27:19 +02:00
parent 6a7bb762d1
commit a523397261

View File

@@ -72,10 +72,14 @@ class _MihCircleAvatarState extends State<MihCircleAvatar> {
children: [ children: [
Visibility( Visibility(
visible: imagePreview != null, visible: imagePreview != null,
child: CircleAvatar( child: Positioned(
radius: widget.width / 2.2, bottom: 5,
backgroundColor: widget.backgroundColor, right: 5,
backgroundImage: imagePreview, child: CircleAvatar(
radius: widget.width / 2.2,
backgroundColor: widget.backgroundColor,
backgroundImage: imagePreview,
),
), ),
), ),
Visibility( Visibility(