import React, {useState} from 'react'; import {View, StyleSheet, Text} from 'react-native'; import CheckBox from '@react-native-community/checkbox'; export default function Checkbox({ value, onValueChange, text }) { return ( {text} ); } const styles = StyleSheet.create({ checkboxContainer: { flexDirection: 'row', marginBottom: 10, alignItems: 'center', width: '100%', }, checkText: { fontSize: 13, color:"#323232", width: '95%' }, });