Closed tahaJemmali closed 1 year ago
@tahaJemmali Same for me. Did you find a solution for this problem?
Same in 3.7.3. You were able to see emojis correctly in other areas? Such as copying pasting from another website to the textfield?
Also similar SO question: https://stackoverflow.com/questions/75439788/flutter-web-shows-emojis-in-blackwhite
Edit: My problem was none of the emojis were visible on Flutter Web, it was showing black and white. I fixed it by adding NotoColorEmoji for web.
child: EmojiPicker(
config: Config(
emojiTextStyle: kIsWeb
? TextStyle(
fontFamily: 'NotoColorEmoji',
)
: null,
),
With that said, I think it's Flutter Web's issue for emojis, not the package. I'm looking for a way to display iOS emojis on Chrome-Safari on MacOS.
@thomas4Bitcraft I reverted back to the old version of flutter :
[√] Flutter (Channel stable, 3.3.9, on Microsoft Windows [version 10.0.22000.1574], locale en-US) • Flutter version 3.3.9 on channel stable at C:\flutter • Upstream repository https://github.com/flutter/flutter.git • Framework revision b8f7f1f986 (3 months ago), 2022-11-23 06:43:51 +0900 • Engine revision 8f2221fbef • Dart version 2.18.5 • DevTools version 2.15.0
I agree, I think the issue is Flutter related. If you still think it's relates to the package it would be nice if you could provide some example code.
No it's not related to the package, I'm going to close the issue. Ps: thank you for the package, very helpfull !