From 499bf3b0b5fcc5aef830b2392038d08f012f4d72 Mon Sep 17 00:00:00 2001 From: mrhcjones <150591975+TheHCJ@users.noreply.github.com> Date: Wed, 24 Apr 2024 21:59:35 +0100 Subject: [PATCH] add protected icon and make icons tonal --- lib/profile/profile.dart | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/profile/profile.dart b/lib/profile/profile.dart index cd11ffa..f221b51 100644 --- a/lib/profile/profile.dart +++ b/lib/profile/profile.dart @@ -326,7 +326,10 @@ class _ProfileScreenBodyState extends State with TickerProvid ), if (user.verified ?? false) const SizedBox(width: 6), if (user.verified ?? false) - const Icon(Icons.verified, size: 24, color: Colors.blue) + Icon(Icons.verified, size: 24, color: theme.colorScheme.primary), + if (user.protected ?? false) const SizedBox(width: 6), + if (user.protected ?? false) + Icon(Icons.lock, size: 24, color: theme.colorScheme.primary) ], ), Container(