Main coves client

style(post): make community avatars circular

Update community avatar styling in post cards from rounded squares
to circles for visual consistency with other avatar elements in the app.

Changes:
- Increase avatar border radius from 4 to 12 for circular CachedNetworkImage
- Use BoxShape.circle for fallback letter avatars
- Add const to fallback avatar decoration

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

Bretton 2cd42d41 7dedfd70

+3 -3
+3 -3
lib/widgets/post_card.dart
··· 356 356 if (community.avatar != null && community.avatar!.isNotEmpty) { 357 357 // Show real community avatar 358 358 return ClipRRect( 359 - borderRadius: BorderRadius.circular(4), 359 + borderRadius: BorderRadius.circular(12), 360 360 child: CachedNetworkImage( 361 361 imageUrl: community.avatar!, 362 362 width: 24, ··· 380 380 return Container( 381 381 width: 24, 382 382 height: 24, 383 - decoration: BoxDecoration( 383 + decoration: const BoxDecoration( 384 384 color: AppColors.primary, 385 - borderRadius: BorderRadius.circular(4), 385 + shape: BoxShape.circle, 386 386 ), 387 387 child: Center( 388 388 child: Text(