“Gaya bersyarat bereaksi” Kode Jawaban

Gaya bersyarat bereaksi

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

Bereaksi gaya bersyarat

// If you need to conditionally apply inline styles (apply all or nothing) then this notation also works:

<div style={ someCondition ? { textAlign:'center', paddingTop: '50%'} : {}} >
  {content}
</div>

// Or to apply it to particular property

<div
    style={{ 
      display: isExpanded ? 'block' : 'none', 
      marginBottom: '1rem'
    }}
  >
  {content}
</div>
shahul

Prop gaya bersyarat bereaksi

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

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

Conditionallu inline styling dalam reaksi

style={ someCondition ? { textAlign:'center', paddingTop: '50%'} : {}}
ALEX HAKOBYAN

Gaya bersyarat bereaksi

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

Jawaban yang mirip dengan “Gaya bersyarat bereaksi”

Pertanyaan yang mirip dengan “Gaya bersyarat bereaksi”

Lebih banyak jawaban terkait untuk “Gaya bersyarat bereaksi” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya