mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-30 09:07:28 +03:00
added info text in boost screen
This commit is contained in:
parent
0ba9f6faa6
commit
ca8e45dea9
@ -173,4 +173,23 @@ export default EStyleSheet.create({
|
|||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
},
|
},
|
||||||
|
infoWrapper: {
|
||||||
|
backgroundColor: '$primaryLightBackground',
|
||||||
|
flexDirection: 'row',
|
||||||
|
justifyContent: 'center',
|
||||||
|
alignItems: 'center',
|
||||||
|
fontSize: 16,
|
||||||
|
paddingHorizontal: 16,
|
||||||
|
borderRadius: 16,
|
||||||
|
paddingVertical: 8,
|
||||||
|
marginTop: 40,
|
||||||
|
},
|
||||||
|
infoIcon: {
|
||||||
|
color: '$primaryDarkGray',
|
||||||
|
},
|
||||||
|
infoText: {
|
||||||
|
fontSize: 16,
|
||||||
|
marginLeft: 8,
|
||||||
|
color: '$primaryDarkGray',
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
@ -225,6 +225,16 @@ class BoostPostScreen extends PureComponent {
|
|||||||
</View>
|
</View>
|
||||||
|
|
||||||
<View style={styles.bottomContent}>
|
<View style={styles.bottomContent}>
|
||||||
|
<View style={styles.infoWrapper}>
|
||||||
|
<Icon
|
||||||
|
size={20}
|
||||||
|
style={styles.infoIcon}
|
||||||
|
iconType="MaterialIcons"
|
||||||
|
name="info-outline"
|
||||||
|
/>
|
||||||
|
<Text style={styles.infoText}>{intl.formatMessage({ id: 'boost.info' })}</Text>
|
||||||
|
</View>
|
||||||
|
|
||||||
<MainButton
|
<MainButton
|
||||||
style={styles.button}
|
style={styles.button}
|
||||||
isDisable={
|
isDisable={
|
||||||
|
@ -659,6 +659,7 @@
|
|||||||
"title": "Get Points",
|
"title": "Get Points",
|
||||||
"buy": "GET Points",
|
"buy": "GET Points",
|
||||||
"next": "NEXT",
|
"next": "NEXT",
|
||||||
|
"info": "Actual value of vote you receive may vary",
|
||||||
"account": {
|
"account": {
|
||||||
"title": "Get Account Boost",
|
"title": "Get Account Boost",
|
||||||
"desc": "30 days delegation will boost your votes and social activities and give you more actions with more Resource Credits."
|
"desc": "30 days delegation will boost your votes and social activities and give you more actions with more Resource Credits."
|
||||||
|
Loading…
Reference in New Issue
Block a user