📜  float right react native - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:04.453000             🧑  作者: Mango

代码示例1
//pick the one which works best for you
style={{textAlign: 'right'}}
style={{flexDirection: 'row', justifyContent: 'flex-end'}}
style={{position: 'absolute', right: 0}}

//parent has to be flexDirection row (default is column)
style={{alignSelf: 'flex-end'}}
style={{alignItems: 'flex-end'}}