Anthony Liang

Results 2 comments of Anthony Liang

If you're talking about ``, you might need to wrap it with a `cssInterop` since it's a 3rd party component that uses the `style` prop. - https://www.nativewind.dev/v4/api/css-interop - https://www.nativewind.dev/v4/guides/third-party-components For...

~~You can always do some TypeScript magic with:~~ ```tsx import type { Stack } from "expo-router"; type NativeStackNavigationOptions = NonNullable< React.ComponentProps["options"] >; ``` **Edit:** Didn't see that you did this.