Ethan Sharabi

Results 65 comments of Ethan Sharabi

it's important to reset cache after configuring new aliases just run `react-native start --resetCache` The new alias should take affect after that.

I would expect `useSharedValue` to work similarly to `useState` or `useRef`. Creating a variable using one of these hooks preserve its value through renders. Having to memoize the shared value...

> `useAnimationReaction`‘s function receives both a `new` and `old` argument. you can compare these two in the function and only do something if it has changed. Yes, I'm well aware...

Hey @ggunti We're in the process of migrating this library to [rnulib](https://github.com/wix/react-native-ui-lib) There we plan to maintain it. I hope in the next month we'll have some progress with it.

Hi all, This component already exist in https://github.com/wix/react-native-ui-lib You can import it like this ``` import {Keyboard} from 'react-native-ui-lib'; const {KeyboardRegistry} = Keyboard; ``` We will post an official update...

Our goal is to provide sub modules for our components through RNUILib so you can import only what you need without ending up with a huge bundle size or need...

Hi @evg1n It's important to load your colors before importing any component file. In your case, change the order of the code like this ``` // entry file index.js import...

Hi, If anyone can share a link to small project that demonstrates the issue it will be really helpful with investigating the problem

Try passing the `preset` prop with `default` value

@zwh1666258377 I believe that with the new typescript template literal feature we can now define dynamic types, including the one you want. Would you consider submitting a PR with a...