Skip to content

Commit

Permalink
add protected icon and make icons tonal
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlJo committed Apr 24, 2024
1 parent 152ea1b commit 499bf3b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/profile/profile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,10 @@ class _ProfileScreenBodyState extends State<ProfileScreenBody> 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(
Expand Down

0 comments on commit 499bf3b

Please sign in to comment.