Я посмотрел на атрибуты дна и позиции.Когда я добавляю bottom: 0, position: 'absolute' к стилю внутреннего вида, нам также нужно указать ширину.(Не знаю, почему относительные позволяют автоматически принимать полную ширину).Но если мы добавим {bottom: 0, position: 'absolute', width: '100%'), то внутреннее представление всегда будет выровнено снизу.Как ниже
<View style={{ flexDirection: 'row', height: 44,
alignItems: 'center', justifyContent: 'space-around',
backgroundColor: 'yellow', bottom: 0, position: 'absolute', width: '100%'}}>
<Image source={require('./resources/images/grid.png')}/>
<Image source={require('./resources/images/grid.png')}/>
<Image source={require('./resources/images/grid.png')}/>
<Image source={require('./resources/images/grid.png')}/>
<Image source={require('./resources/images/grid.png')}/>
</View>
</View>