Skip to content

Commit 499bf3b

Browse files
committed
add protected icon and make icons tonal
1 parent 152ea1b commit 499bf3b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/profile/profile.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,10 @@ class _ProfileScreenBodyState extends State<ProfileScreenBody> with TickerProvid
326326
),
327327
if (user.verified ?? false) const SizedBox(width: 6),
328328
if (user.verified ?? false)
329-
const Icon(Icons.verified, size: 24, color: Colors.blue)
329+
Icon(Icons.verified, size: 24, color: theme.colorScheme.primary),
330+
if (user.protected ?? false) const SizedBox(width: 6),
331+
if (user.protected ?? false)
332+
Icon(Icons.lock, size: 24, color: theme.colorScheme.primary)
330333
],
331334
),
332335
Container(

0 commit comments

Comments
 (0)