我希望有一个包含多个开关的列表,以便从本质上创建一个活动列表,以便用户对感兴趣的一个或多个感兴趣的对象进行“选择/检查”。
我的计划是使用一个开关作为Flatlist的renderItem,但是我在两件事上遇到了麻烦。
1)当它在Flatlist中时,我无法使其保持打开状态。我曾一度使它工作,但此后就搞砸了。
2)工作时,所有开关将一起切换。
任何帮助将不胜感激!
import React, { Component } from 'react';
import { FlatList, StyleSheet, Text, View, Switch } from 'react-native';
class InterestsList extends Component {
constructor() {
listKeys = [
{key: 'Basketball'},
{key: 'Football'},
{key: 'Baseball'},
{key: 'Soccer'},
{key: 'Running'},
{key: 'Cross Training'},
{key: 'Gym Workout'},
{key: 'Swimming'},
];
super();
this.state = {
switchValue: false
}
}
toggleSwitch = (value) => {
this.setState({switchValue: value})
console.log('Switch is: ' + value)
}
listItem = ({item}) => (
<View style={{flex: 1, flexDirection: 'row', justifyContent: 'space-between'}}>
<Text style={styles.item}>{item.key}</Text>
<Switch
onValueChange={(value) => this.setState({switchValue: value})}
value={this.state.switchValue}
/>
</View>
);
render() {
return (
<FlatList
data={listKeys}
renderItem={this.listItem}
/>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: 22
},
item: {
padding: 10,
fontSize: 18,
height: 44,
},
})
export default InterestsList;
答案 0 :(得分:2)
您可以尝试以下方法:
import React, { Component } from 'react';
import { FlatList, StyleSheet, Text, View, Switch } from 'react-native';
class InterestsList extends Component {
constructor() {
super();
this.state = {
listKeys: [
{key: 'Basketball', switch : false},
{key: 'Football', switch : false},
{key: 'Baseball', switch : false},
{key: 'Soccer', switch : false},
{key: 'Running', switch : false},
{key: 'Cross Training', switch : false},
{key: 'Gym Workout', switch : false},
{key: 'Swimming', switch : false},
]
}
}
setSwitchValue = (val, ind) => {
const tempData = _.cloneDeep(this.state.listKeys);
tempData[ind].switch = val;
this.setState({ listKeys: tempData });
}
listItem = ({item, index}) => (
<View style={{flex: 1, flexDirection: 'row', justifyContent: 'space-between'}}>
<Text style={styles.item}>{item.key}</Text>
<Switch
onValueChange={(value) => this.setSwitchValue(value, index)}
value={item.switch}
/>
</View>
);
render() {
return (
<FlatList
data={this.state.listKeys}
renderItem={this.listItem}
/>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
paddingTop: 22
},
item: {
padding: 10,
fontSize: 18,
height: 44,
},
})
export default InterestsList;