react-native-sideswipe 介绍
一个 简单的,跨平台的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}
{{ width }}
data={data}
contentOffset={contentOffset}
onIndexChange={index =>
this.setState(() => ({ currentIndex: index }))
}
renderItem={({ itemIndex,currentIndex,item,animatedValue }) => (
<CustomComponent
{...item}
index={itemIndex}
currentIndex={currentIndex}
animatedValue={animatedValue}
/>
)}
/>
);
};
}
GitHub: https://github.com/kkemple/react-native-sideswipe
网站描述: 简单跨平台的React Native可滑动的组件
react-native-sideswipe官方网站
官方网站:
如果觉得 网站内容还不错,欢迎将 网站 推荐给程序员好友。
查看更多关于react-native-sideswipe的详细内容...