You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which package manager are you using? (Yarn is recommended)
yarn
Summary
When using Tabs.Screen or any other navigation, the listener prop do not have types.
Expected behaviour is to have types
Minimal reproducible example
_layout.tsx
import { Tabs } from "expo-router";
export default function RootLayout() {
return (
<Tabs>
<Tabs.Screen name="index" listeners={{
// here there should be typescript intellisense
}} />
</Tabs>
);
}
The text was updated successfully, but these errors were encountered:
Which package manager are you using? (Yarn is recommended)
yarn
Summary
When using
Tabs.Screen
or any other navigation, the listener prop do not have types.Expected behaviour is to have types
Minimal reproducible example
_layout.tsx
The text was updated successfully, but these errors were encountered: