Tushar Tripathi

Results 4 comments of Tushar Tripathi
trafficstars

Will you be interested in a PR for this? Do you have any preferred approach for something like this? I think a good way is to use the inbuilt logging...

@corysimmons the components in tamagui take `unstyled` prop which makes them headless, the composition API is similar to radix.

@warum7 did you try Gluestack as well? I have yet to try it. How's it compared to tamagui?

workaround i'm using for this - ```tsx const listRef = useRef(null); const scrollUpWhenCleared = useCallback((value: string) => { if (value === "") { requestAnimationFrame(() => { listRef.current?.scrollTo({ top: 0 });...