Isaac Way
Isaac Way
Hey guys, whatever you do to solve this donโt use negative margins or padding. The behavior is undefined on android and will break on certain devices. Itโs troubling all of...
@nandorojo you can do a .filter on the children to filter out the nulls to fix the issue
@mikehardy don't you think we probably should stick to the old iOS SDK if the new one wont be supporting new versions of React Native? Being able to use the...
@mikehardy I guess I'm just experiencing some residual frustration from having downloaded `react-native-firebase` today only to realize the newest version that happened to be released yesterday isn't compatible with my...
Should we be encouraging the use of `suspense` with tRPC? Seems like a horribly costly footgun. The way react query works with suspense, any time there are multiple queries in...
> Splitting the queries into different components @KATT I don't think this is a viable solution in practice because (1) that's going to be more work for the developer and...
[Haystack](https://hstk.com/) - A software consulting company (site not built with tRPC). We just built a tRPC template we'll be using for all future React Native projects if possible. Really excited...
I just do this: ```ts export const {useQuery, useMutation} = trpc; ``` Then use those in components directly. It's just more dev friendly IMO to import useQuery or useMutation instead...
you can implement one yourself pretty easily with `react-native-gesture-handler` and `react-native-reanimated`
Getting this issue with `edges={['bottom']}`. It seems to happen specifically when there is an immediate rerender of the screen. I just add a `setTimeout(0, ()=>{//dostuff})` as a hack to fix...