“Prop de estilo condicional React” Respostas de código

estilo condicional reage

class App extends Component {
  constructor() {
    super()
    this.state = { isRed: true }
  }

  render() {
    const isRed = this.state.isRed

    return <p style={{ color: isRed ? 'red' : 'blue' }}>Example Text</p>
  }
}
Grieving Gharial

Prop de estilo condicional React

style={{ textDecoration: todo.completed && "line-through" }}

style={{ textDecoration: todo.completed ? "line-through" : 'none' }}
Runtime Terror

estilo condicional reage

<ImageBackground source={Images.bg} style={ (navHeight==0) ? styles.bg1 : styles.bg2}>
Grieving Gharial

Respostas semelhantes a “Prop de estilo condicional React”

Perguntas semelhantes a “Prop de estilo condicional React”

Mais respostas relacionadas para “Prop de estilo condicional React” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código