import React, {useState} from 'react'; import {View, StyleSheet, Text} from 'react-native'; import CheckBox from '@react-native-community/checkbox'; import {BLACK, PRIMERY} from '../color'; 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: BLACK, width: '95%', }, });