“Center Element React Native” Kod odpowiedzi

Center Element React Native

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

Pozycje w centrum w rodzimych

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

Wyśrodkuj element React Native

// 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

Odpowiedzi podobne do “Center Element React Native”

Pytania podobne do “Center Element React Native”

Więcej pokrewnych odpowiedzi na “Center Element React Native” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu