Andrei Alecu

Results 277 comments of Andrei Alecu

Cannot look into this without a repro. Try memoizing `renderTabBar`. The following works in a project I'm working on: ```ts const renderTabBar = useCallback( (props: TabBarProps) => { return (...

As the Author mentioned, the feature is currently incomplete and has some issues that need to be addressed before it can be merged. Additionally, I have concerns about adding this...

@damassi - feel free to play with the example app to see if it works now. If you need to make any modifications to the library, PRs are welcome. Please...

It appears the tooltip with the time has been implemented, just noticed this:

#394 might fix this, I released it as 7.0.1-beta.0 on npm. Please help test it for unwanted side effects and report back. Thanks!

I was able to manually handle Hebrew with code like: `npm install twitter_cldr` ```typescript import * as TwitterCldrLoader from "twitter_cldr"; const TwitterCldr = TwitterCldrLoader.load("en"); class ... { private isHebrew(text: string)...

Same issue, this worked: ```ts jest.mock('react-native-reanimated', () => require('react-native-reanimated/mock'), ); ```

Also running into broken FlatLists with recent RN versions. Started happening after updating RN. Possibly related: https://github.com/facebook/react-native/issues/36766 https://github.com/facebook/react-native/issues/39421