Open
Description
Before submitting a new issue
- I tested using the latest version of the library, as the bug might be already fixed.
- I tested using a supported version of react native.
- I checked for possible duplicate issues, with possible answers.
Bug summary
why i just added 4 tabs item that make inactive tab is invisible
Library version
^0.9.1
Environment info
expo 53
Steps to reproduce
nothing
Reproducible sample code
import { Tabs } from "@/src/shared/components/organisms";
export default function TabLayout() {
return (
<Tabs>
<Tabs.Screen name="index" options={{ title: "Home" }} />
<Tabs.Screen name="search" options={{ title: "Search" }} />
<Tabs.Screen name="bookmark" options={{ title: "Bookmark" }} />
<Tabs.Screen name="setting" options={{ title: "Settings" }} />
</Tabs>
);
}