Replies: 1 comment 2 replies
-
👋 @msl2000 We have a section about customization of tabbed header, but if you want to do it with "from scratch" ⬇️ :
const CustomTabbedHeaderPager = () => {
return (
<StickyHeaderScrollView
renderHeader={() => {
// Render your custom header
return <CustomHeader />
}}
renderTabs={() => {
// render your custom tab bar
return <CustomTabBar />
}}
>
{/** pass your custom tab pager layout here */}
<CustomTabPager />
</StickyHeaderScrollView>
)
} Here we have example of such custom header layout with |
Beta Was this translation helpful? Give feedback.
-
Feature request
Hi, I am trying to implement tabs in the StickyHeaderScrollview component and found the renderTabs prop. The only thing I cannot find is to how to actually implement the tabs themselves in the component. is there any documentation I can find this on?
I had a look at the TabbedHeaderPager and found the Pager component there but is not accessible through normal means.
Any help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions