import React from "react"; import { Platform } from "react-native"; import { FlashList } from "@shopify/flash-list"; import { useHeaderTabContext } from "@showtime-xyz/universal.collapsible-tab-view"; import { InfiniteScrollList, InfiniteScrollListProps, } from "@showtime-xyz/universal.infinite-scroll-list"; import { TabFlashListScrollView } from "./tab-flash-list-scroll-view"; export type TabInfiniteScrollListProps = Omit< InfiniteScrollListProps, "renderScrollComponent" > & { index: number; }; function TabInfiniteScrollListComponent( props: TabInfiniteScrollListProps, ref: React.Ref> ) { const { scrollViewPaddingTop } = useHeaderTabContext(); return ( ); } export const TabInfiniteScrollList = React.forwardRef( TabInfiniteScrollListComponent ) as ( props: TabInfiniteScrollListProps & { ref?: React.Ref>; } ) => React.ReactElement;