REACT NIGNAGE TOGGLE BOUTON avec du texte

import { Switch } from 'react-native-switch';

<Switch
	value={true}  
	onValueChange={(val) => console.log(val)}
	disabled={false}
	activeText={'On'}
	inActiveText={'Off'}
	backgroundActive={'green'}
	backgroundInactive={'gray'}
	circleActiveColor={'#30a566'}
	circleInActiveColor={'#000000'}
/>
Filthy Fox