ListComponentProps: Pick<
    FlatListProps<T>,
    "contentContainerStyle" | "horizontal" | "scrollEnabled",
> & {
    isRefreshing?: boolean;
    items: ListItemsType<T>;
    ListEmptyComponent?: () => React.JSX.Element;
    onEndScroll?: () => void;
    onRefresh?: () => void;
    optimization?: OptimizationListType;
    renderItem: RenderItemType<T>;
    scrollEnabled?: boolean;
}

Type Parameters

  • T