An warware: mayar da martani ga ɓangaren ƙasa a tsakiyar ƙasa

Babban matsalar ita ce abin da ke mayar da martani a cibiyar ƙasa ba shi da sauƙin isa.

I'm trying to create a component at the bottom center of the screen in React Native. I've tried using <code>absolute</code> and <code>relative</code> positioning, but nothing seems to work. Here's my code:
<code>&lt;View style={{position: 'absolute', bottom: 0, alignItems: 'center'}}&gt;
  &lt;Text&gt;This is my component!&lt;/Text&gt;
&lt;/View&gt;
</code>


A:

You can use <code>flexDirection:'row'</code>,<code>justifyContent:'center'</code>,<code>alignItems:'flex-end'</code>. 

<View style={{flexDirection:'row',justifyContent:'center',alignItems:'flex-end'}}>
<Text>This is my component!</Text>
</View>

Menene Yoga a cikin React Native

React Native dandamali ne don gina aikace-aikacen hannu tare da React. Yoga harshe ne na shirye-shirye wanda ke taimaka wa masu haɓakawa ƙirƙirar mu'amalar masu amfani da aikace-aikace.

Menene Flexbox

?

Flexbox sigar shimfidar wuri ce don React Native wanda ke sauƙaƙa ƙirƙirar shimfidu masu sassauƙa da amsawa. Yana ba ku damar tantance abubuwan da ya kamata a shimfiɗa kuma waɗanda ya kamata a matsa, kuma yana ba da zaɓuɓɓuka iri-iri don sarrafa yadda ake yin shimfidar.

Shafi posts:

Leave a Comment