扫一扫分享
一个简单的,跨平台的react Native可滑动组件,具有合理的默认值 ,非常灵活的api。
安装
yarn add react-native-sideswipe
使用
import { Dimensions } from 'react-native';
import SideSwipe from 'react-native-sideswipe';
import CustomComponent from '...'
import data from '...'
export default class SweetCarousel extends Component {
state = {
currentIndex: 0,
};
render = () => {
// center items on screen
const { width } = Dimensions.get('window');
const contentOffset = (width - CustomComponent.WIDTH) / 2;
return (
<SideSwipe
index={this.state.currentIndex}
itemWidth={CustomComponent.WIDTH}
style={{ width }}
data={data}
contentOffset={contentOffset}
onIndexChange={index =>
this.setState(() => ({ currentIndex: index }))
}
renderItem={({ itemIndex, currentIndex, item, animatedValue }) => (
<CustomComponent
{...item}
index={itemIndex}
currentIndex={currentIndex}
animatedValue={animatedValue}
/>
)}
/>
);
};
}
手机预览