-
Notifications
You must be signed in to change notification settings - Fork 86
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
ListEmptyComponent renders in a "mirrored" state? #91
Comments
lol :D I didn't run |
oh sorry this is react native :D as stated in the readme, please search for alternatives, cause I am currently maintaining only flutter library and if I will be able to achieve code completion there, I will be only then able to update react native. And it will be a brand new library anyway. |
same here in android build, in the react native library, after upgrading RN to version 0.72.4 and android targetApi to 34 UPDATE: using a workaround works ok, changing the theme fonts style (in my case I am using darkTheme) fonts: {
...darkTheme.fonts,
emptyChatPlaceholderTextStyle: {
...darkTheme.fonts.emptyChatPlaceholderTextStyle,
// workaround for android showing a mirrored text https://github.com/flyerhq/react-native-chat-ui/issues/91
transform: Platform.OS === 'android' ? [{scaleX: -1}] : undefined
}
} |
Hello, @demchenkoalex thank you so much for this awesome lib 👍 . I hope to support this in future. :)) But, when will this v2 be available, please? Thanks!! |
hey @shamxeed maybe I have mistaken repositories - I work on v2 for Flutter, react native is abandoned at the moment. That being said I planned to go back to React Native someday, but it will be after Flutter is code complete more or less, so |
Hello, taking the code from the docs, I get something like this:
Any ideas what's going on?
The text was updated successfully, but these errors were encountered: