React Native 中布局入门

2023-05-16

我在做布局的时候,大部分时间看这个例子就够了,分享给大家。

 

Properties

To choose the right layout for a component's children, we must make 3 choices:

PropertyDefaultOptionsDescription
flexDirectioncolumnrow, columnDo we want a vertical (column) or horizontal (row) layout? This choice determines the orientation of the primary axis of our layout.
justifyContentflex-startflex-start, center, flex-end, space-around, space-betweenHow should the content be distributed along the primary axis of our layout? Should it be at the start, the center, the end, or spaced evenly?
alignItemsstretchflex-start, center, flex-end, stretchHow should the content be aligned along the secondary axis of our layout? (If the primary axis is row, then the secondary axis is column, and vice versa) Should content be aligned at the start, the center, the end, or stretched to fill?

 一个非常简单明了的例子

https://www.reactnative.express/core_components/layout

 

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

React Native 中布局入门 的相关文章

随机推荐