Mahmut Jomaa

Results 8 comments of Mahmut Jomaa

No it is not working with Ivy.

@gotham64 True, we switched to React because Fluent UI just works better with it.

I think the fix would be to register the custom element so "super()" and "this" can be used.

For me the temp fix was: ```typescript import { Picker } from 'emoji-mart'; if ( typeof customElements !== 'undefined' && !customElements.get('em-emoji-picker') ) { customElements.define('em-emoji-picker', Picker as any); } ```

In case you use React: Actually wouldn't it be easier to just NOT use @emoji-mart/react but our own wrapper? I mean this is all the code for the wrapper: https://github.com/missive/emoji-mart/blob/main/packages/emoji-mart-react/react.tsx...

Switched to https://github.com/ealush/emoji-picker-react and seems like mattermost [1] did the same. [1] https://github.com/mattermost/mattermost-plugin-calls/pull/294

I assume you use Xamarin.Forms. Have you tried to define a global style for every IconToolbarItem in App.xaml? Something like this ``` ``` Besides that.. does IconToolBarItem work in your...

At that point I would be fine with having a codemod that transforms all top level imports to 2nd level or default imports. Else it's just workarounds that can break...