Skip to content

Commit

Permalink
Fix UK flag
Browse files Browse the repository at this point in the history
  • Loading branch information
g123k committed Aug 2, 2024
1 parent 41be2ec commit 104bc82
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/smooth_app/lib/pages/prices/emoji_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ class EmojiHelper {
static String? getEmojiByCountryCode(final String countryCode) {
if (countryCode.isEmpty) {
return null;
} else if (countryCode.toUpperCase() == 'UK') {
return _getCountryEmojiFromUnicode('GB');
}

return _getCountryEmojiFromUnicode(countryCode);
}

Expand Down

0 comments on commit 104bc82

Please sign in to comment.