es.davy.ai

Preguntas y respuestas de programación confiables

¿Tienes una pregunta?

Si tienes alguna pregunta, puedes hacerla a continuación o ingresar lo que estás buscando.

Tag: REACT-NATIVE-STYLESHEET

Alinea el elemento a la derecha dentro del contenedor.

Esto es probablemente una respuesta simple, pero aún estoy aprendiendo js / react native y estoy un poco perdido. ¿Alguien podría explicar por qué el siguiente código no logra alinear a la derecha el elemento “handicap”? import React from ‘react’; import { View, StyleSheet } from ‘react-native’; import AppText from . . . Read more

¿Cómo cambiar el estilo de un gancho?

Tengo un enunciado if que establece un gancho, pero además de modificar el texto interior, ¿quiero variar el estilo, es posible? aquí está el código: const [ageLabel, setAgeLabel] = useState(‘Age’); const testDate = () => { let day = parseInt(dayText); let month = parseInt(monthText); let year = parseInt(yearText); setAgeLabel(‘Age’); let . . . Read more