How to align button's title to right using react-native-elements?
You can easily do this by adding justifyContent 'flex-end' to React Native Elements Button buttonStyle props
<Button
title="My Button"
type="clear"
buttonStyle={{ justifyContent: 'flex-end' }}
/>