mirror of
https://github.com/ecency/ecency-mobile.git
synced 2025-01-02 19:06:39 +03:00
Merge pull request #2193 from ecency/sa/-transfer-screen-ui-bug
Alignment / Padding issues in Transfer screens
This commit is contained in:
commit
43d3735a90
@ -49,7 +49,6 @@ export default EStyleSheet.create({
|
||||
},
|
||||
autocompleteLineContainer: {
|
||||
flexDirection: 'row',
|
||||
paddingHorizontal: 20,
|
||||
zIndex: 999,
|
||||
},
|
||||
autocompleteLabelText: {
|
||||
@ -72,7 +71,8 @@ export default EStyleSheet.create({
|
||||
},
|
||||
autocompleteLabelContainer: {
|
||||
flex: 1,
|
||||
padding: 10,
|
||||
paddingVertical: 10,
|
||||
paddingHorizontal: 16,
|
||||
justifyContent: 'center',
|
||||
color: '$primaryBlack',
|
||||
maxWidth: '$deviceWidth / 2.9',
|
||||
|
@ -47,7 +47,6 @@ export default EStyleSheet.create({
|
||||
},
|
||||
autocomplateLineContainer: {
|
||||
flexDirection: 'row',
|
||||
paddingHorizontal: 20,
|
||||
zIndex: 999,
|
||||
},
|
||||
autocomplateLabelText: {
|
||||
@ -70,7 +69,8 @@ export default EStyleSheet.create({
|
||||
},
|
||||
autocomplateLabelContainer: {
|
||||
flex: 1,
|
||||
padding: 10,
|
||||
paddingVertical: 10,
|
||||
paddingHorizontal: 16,
|
||||
justifyContent: 'center',
|
||||
color: '$primaryBlack',
|
||||
maxWidth: '$deviceWidth / 2.9',
|
||||
|
@ -194,7 +194,7 @@ const TransferView = ({
|
||||
<BasicHeader title={intl.formatMessage({ id: `transfer.${transferType}` })} />
|
||||
<View style={styles.container}>
|
||||
<ScrollView>
|
||||
<View style={styles.topContent}>
|
||||
<View style={[styles.toFromAvatarsContainer, { marginBottom: 16 }]}>
|
||||
<UserAvatar username={from} size="xl" style={styles.userAvatar} noAction />
|
||||
<Icon style={styles.icon} name="arrow-forward" iconType="MaterialIcons" />
|
||||
<UserAvatar username={destination} size="xl" style={styles.userAvatar} noAction />
|
||||
|
@ -126,7 +126,7 @@ export default EStyleSheet.create({
|
||||
},
|
||||
|
||||
formButton: {
|
||||
padding: 12,
|
||||
height: 44,
|
||||
borderRadius: 5,
|
||||
backgroundColor: '$primaryBlue',
|
||||
marginTop: 5,
|
||||
|
@ -177,7 +177,7 @@ class TransferTokenView extends Component {
|
||||
<BasicHeader title={intl.formatMessage({ id: `transfer.${transferType}` })} />
|
||||
<View style={styles.container}>
|
||||
<ScrollView>
|
||||
<View style={styles.topContent}>
|
||||
<View style={[styles.toFromAvatarsContainer, { marginBottom: 16 }]}>
|
||||
<UserAvatar username={from} size="xl" style={styles.userAvatar} noAction />
|
||||
<Icon style={styles.icon} name="arrow-forward" iconType="MaterialIcons" />
|
||||
<UserAvatar username={destination} size="xl" style={styles.userAvatar} noAction />
|
||||
|
Loading…
Reference in New Issue
Block a user