“Центральный элемент в React Native” Ответ

Центральный элемент реагирует натив

   
var styles = StyleSheet.create({
    content:{
        flex:1,
        flexDirection:'row',
        alignItems:'center',
        justifyContent:'center'
    },
   …
});
Frantic Flamingo

Центр элемента реагирует нативно

// Add these styles to a parent element (could be a view)
   
const styles = StyleSheet.create({
    parent:{
        flex:1, // Covers the available space
        justifyContent:"center", // aligns through main axis
        alignItems:"center" // aligns though secondary axis
    }
});
codewi

Центральный элемент в React Native

element{
     resizeMode: 'contain',
        alignSelf: 'center',
        }
Javasper

Ответы похожие на “Центральный элемент в React Native”

Смотреть популярные ответы по языку

Смотреть другие языки программирования