- How can i put all the checkboxes under one view ?
- How can i make choose all, when i will press it so it will check the all rest check boxes and when i will press it again so it will delete my all checks ?
import React, { useState } from "react";
import { Text, StyleSheet, View } from "react-native";
import CheckBox from '@react-native-community/checkbox';
const App = () => {
const [isSelected1, setSelection1] = useState(false);
const [isSelected2, setSelection2] = useState(false);
return (
<View style={styles.container}>
<View style={styles.checkboxContainer}>
<CheckBox
value={isSelected1}
onValueChange={setSelection1}
style={styles.checkbox}
/>
<Text style={styles.label}>CHOOSE ALL</Text>
</View>
<View style={styles.checkboxContainer}>
<CheckBox
value={isSelected2}
onValueChange={setSelection2}
style={styles.checkbox}
/>
<Text style={styles.label}>THE NAME</Text>
</View>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: "center",
justifyContent: "center",
},
checkboxContainer: {
flexDirection: "row",
// marginBottom: 20,
},
checkbox: {
alignSelf: "center",
},
label: {
margin: 8,
},
});
export default App;
Aucun commentaire:
Enregistrer un commentaire