Ame*_*ena 0 javascript slider react-native
我正在尝试为我的应用程序创建 backgroundcarousel。我正进入(状态
“DEVICE_WIDTH”是只读的
当我删除它并添加一些值时,它没有错误,但无法按预期工作。
const DEVICE_WIDTH = Dimensions.get("window").width;
componentDidMount = () =>{
setInterval(() => {
this.setState(
prev => ({ selectedIndex: prev.selectedIndex === this.props.images.length - 1 ? 0 : prev.selectedIndex + 1 }),
() => {
this.scrollRef.current.scrollTo({
animated: true,
y: 0,
x: DEVICE_WIDTH = this.state.selectedIndex //error here
});
}
);
},2000);
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
481 次 |
| 最近记录: |