30 lines
749 B
TypeScript
30 lines
749 B
TypeScript
import React from 'react';
|
|
import { ScrollView, StyleSheet } from 'react-native';
|
|
|
|
import { withTheme } from '../../theme';
|
|
import scrollPersistTaps from '../../utils/scrollPersistTaps';
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
paddingVertical: 16
|
|
}
|
|
});
|
|
|
|
interface IListContainer {
|
|
children: JSX.Element;
|
|
}
|
|
const ListContainer = React.memo(({ children, ...props }: IListContainer) => (
|
|
// @ts-ignore
|
|
<ScrollView
|
|
contentContainerStyle={styles.container}
|
|
scrollIndicatorInsets={{ right: 1 }} // https://github.com/facebook/react-native/issues/26610#issuecomment-539843444
|
|
{...scrollPersistTaps}
|
|
{...props}>
|
|
{children}
|
|
</ScrollView>
|
|
));
|
|
|
|
ListContainer.displayName = 'List.Container';
|
|
|
|
export default withTheme(ListContainer);
|