Zach Nugent

Results 39 comments of Zach Nugent
trafficstars

@useEffects I just updated the ui and primitive components like Select and Dropdown Menu. Once you update your components, you can follow the instructions here: https://rnr-docs.vercel.app/getting-started/common-patterns/#programmatically-showing-and-hiding-components. If you run into...

You can use the `` provider https://docs.swmansion.com/react-native-reanimated/docs/device/ReducedMotionConfig/ I'll add it to the root layout soon. @rwitchell thanks for bringing this up and finding the root cause **Edit:** for layout specific...

Hey @tuke307 , did you try https://rnr-docs.vercel.app/getting-started/common-patterns/#a-portal-component-inside-a-presentation-modal-screen ?

@sujayxaradhya They use `View`, `Pressable`, and `Text` from react-native which are technically native components but they are not made from ios/android UI menus

All components that use a Portal, like the dialog, now have use `FullWindowOverlay` in the component definition. https://github.com/founded-labs/react-native-reusables/blob/main/packages/registry/src/new-york/components/ui/dialog.tsx

@ImamJanjua This is a deprecated component so you can use it if you want. That is why it is not in the CLI. If I remember correctly, the main reason...

@ImamJanjua That was one of the issues I was running into. Unfortunately, I don't know.

Hi @ImamJanjua Due to a recent scope update this feature request is no longer within our current focus. See https://github.com/mrzachnugent/react-native-reusables/discussions/229, for more details. Thanks for understanding!

@Shu03 Can you please provide a minimal reproduction repo?

@Shu03 Under the hood, the card, table, and tabs are made with `View` and `Pressable`. By converting them to`View`s, there was still the same problem. Here is the code that...