Skip to content

Commit

Permalink
Made verified checkmarks blue on tweetcards
Browse files Browse the repository at this point in the history
  • Loading branch information
HarlJo committed Mar 14, 2024
1 parent ce521bd commit c71f0ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tweet/tweet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ class TweetTileState extends State<TweetTile> with SingleTickerProviderStateMixi
style: const TextStyle(fontWeight: FontWeight.w500))),
if (tweet.user!.verified ?? false) const SizedBox(width: 4),
if (tweet.user!.verified ?? false)
Icon(Icons.verified_outlined, size: 18, color: Theme.of(context).primaryColor)
Icon(Icons.verified_outlined, size: 18, color: Colors.blue)
],
),
),
Expand Down

0 comments on commit c71f0ea

Please sign in to comment.