position:absolute
を使用している場合、justifyContent
またはalignItems
を使用して要素を中央に配置できないようです。 marginLeft
を使用するには回避策がありますが、デバイスの高さと幅を検出するためのディメンションを使用しても、すべてのデバイスで同じものを表示するわけではありません。リアクションネイティブ絶対配置の水平方向の中心
bottom: {
position: 'absolute',
justifyContent: 'center',
alignItems: 'center',
top: height*0.93,
marginLeft: width*0.18,
},
bottomNav: {
flexDirection: 'row',
},
要素に静的な幅または動的な要素がありますか? – Cherniv
静的な幅です。 – Hasen