textalignVertical ne fonctionne pas dans iOS react natif

{
    height: 30,
    textAlignVertical: 'center',
    ...Platform.select({
        ios: {
            lineHeight: 30 // as same as height
        },
        android: {}
    })
}
Alexandre Dao