-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Filter out emojis that cannot be displayed on iOS #165
Comments
iOS doesn't provide an easy way to determine which emoji is supported or not like Android does. Beside that all emoji should be supported by iOS. Is there anything that doesn't work? |
@Fintasys Thanks for your super quick response! |
It's seems the issue is related to flutter.
I tried to check but there is no easy way to detect this glitch. Any idea? |
@Fintasys I found a good workaround. No more glitch :) We can have this config (maybe it could be nice to have it by default in your package) config: const Config(
emojiTextStyle: TextStyle(
fontFamilyFallback: [
'Apple Color Emoji',
'Noto Color Emoji',
],
),
), On my side I've surrounded with my theme the fontFamilyFallback (to well display also on text field/content and so) |
Hi,
Thanks for the great package.
I was wondering if it's possible to filter out unsupported emojis on iOS.
I know it's currently only for android. But there is not reason why.
Please consider adding it to the package,
Thanks!
The text was updated successfully, but these errors were encountered: