fix badge color and show users avatar

This commit is contained in:
otsmr 2026-07-18 20:10:58 +02:00
parent df9b0d66bd
commit bb8f33e9d6
2 changed files with 7 additions and 2 deletions

View file

@ -33,7 +33,9 @@ class VerificationBadgeComp extends StatefulWidget {
}
class _VerificationBadgeCompState extends State<VerificationBadgeComp> {
late bool _isVerified = widget.contact?.verified ?? true;
late bool _isVerified =
widget.contact?.verified ??
!(widget.isVerifiedByTransferredTrust ?? false);
bool _isSharedVerified = false;
int _verifiedByTransferredTrustCount = 0;
int _sharedByVerifiedCount = 0;

View file

@ -436,7 +436,10 @@ class UserDiscoverySetupComp extends StatelessWidget {
),
child: Row(
children: [
const AvatarIcon(fontSize: 14),
const AvatarIcon(
fontSize: 14,
myAvatar: true,
),
const SizedBox(width: 8),
Expanded(
child: Column(