1//pick the one which works best for you
2style={{textAlign: 'right'}}
3style={{flexDirection: 'row', justifyContent: 'flex-end'}}
4style={{position: 'absolute', right: 0}}
5
6//parent has to be flexDirection row (default is column)
7style={{alignSelf: 'flex-end'}}
8style={{alignItems: 'flex-end'}}