import React from 'react'; import { Checkbox, Heading, HStack, VStack, Text, Box } from 'native-base'; export const Example = () => { const [groupValue, setGroupValue] = React.useState([ 'Photography', 'Gardening', ]); return ( Hobbies Selected: ({groupValue.length}) { setGroupValue(values || []); }} > Photography Writing Gardening Cooking ); };