react-native-big-list
Version:
High-performance, virtualized list for React Native. Efficiently renders large datasets with recycler API for smooth scrolling and low memory usage. Ideal for fast, scalable, customizable lists on Android, iOS, and web.
47 lines (42 loc) • 1.1 kB
JSX
import React, { memo } from "react";
import PropTypes from "prop-types";
import { Animated, Image } from "react-native";
import { createElement, mergeViewStyle } from "./utils";
const BigListPlaceholder = ({
component,
image,
style,
height,
width = "100%",
}) => {
const bgStyles = {
position: "absolute",
resizeMode: "repeat",
overflow: "visible",
backfaceVisibility: "visible",
flex: 1,
height: "100%",
width: "100%",
};
return (
<Animated.View
style={mergeViewStyle(style, {
height,
width,
})}
>
{createElement(component) || (
<Image
source={image || require("./assets/placeholder.png")}
style={bgStyles}
/>
)}
</Animated.View>
);
};
BigListPlaceholder.propTypes = {
height: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
width: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
style: PropTypes.oneOfType([PropTypes.object, PropTypes.array]),
};
export default memo(BigListPlaceholder);