Vue d'évitement du clavier ne fonctionne pas sur React natif

<KeyboardAvoidingView
  keyboardVerticalOffset = {Header.HEIGHT + 20} // adjust the value here if you need more padding
  style = {{ flex: 1 }}
  behavior = "padding" >
    
// or

<KeyboardAvoidingView styles={styles.container} behavior='position'>
Obedient Ox