Desenha um componente para seleção de opções.
<View sendFocusToInput direction="row" align="center"> <CheckBox name="GroupName" value="Sim" checked={this.state.sendPromo} onChange={({ value, checked }) => { this.setState({ sendPromo: checked }) }} /> <Text marginLeft="nano">Enviar emails promocionais</Text></View> Copy
<View sendFocusToInput direction="row" align="center"> <CheckBox name="GroupName" value="Sim" checked={this.state.sendPromo} onChange={({ value, checked }) => { this.setState({ sendPromo: checked }) }} /> <Text marginLeft="nano">Enviar emails promocionais</Text></View>
https://legacy.reactjs.org/docs/legacy-context.html
Desenha um componente para seleção de opções.