“Centrum poziomo reagują natywnie” Kod odpowiedzi

Center Element React Native

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

Centrum poziomo reagują natywnie

const styles = StyleSheet.create({
  	//Container for View or Text or etc. that must be centered.
    parent:{
        flex:1, // Covers the available space
        justifyContent:"center", // aligns through main axis
        alignItems:"center" // aligns though secondary axis
    }
});
MadMan

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 “Centrum poziomo reagują natywnie”

Pytania podobne do “Centrum poziomo reagują natywnie”

Więcej pokrewnych odpowiedzi na “Centrum poziomo reagują natywnie” w JavaScript

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

Przeglądaj inne języki kodu