react-native-checkbox

Tags
button
deprecated
비추천
Column
체크박스, 비추천 (차라리 react-natvie-paper 쓰자)
deprecated → 커뮤니티 버전 써라.
 

react-native-checkbox

설치

$ yarn add @react-native-community/checkbox #ios라면 아래도 추가로 $ npx pod-install
 

코드 예시

import CheckBox from '@react-native-community/checkbox'; ... const [toggleCheckBox, setToggleCheckBox] = useState(false) <CheckBox disabled={false} value={toggleCheckBox} onValueChange={(newValue) => setToggleCheckBox(newValue)} /> ...