added place holder for price

This commit is contained in:
u-e 2019-08-04 16:49:01 +03:00
parent 0f0d5410e5
commit a0b0c61449
2 changed files with 15 additions and 2 deletions

View File

@ -9,10 +9,16 @@ export default EStyleSheet.create({
flexDirection: 'column',
},
paragraphWrapper: {
marginLeft: 50,
marginLeft: 30,
},
line: {
flexDirection: 'row',
marginVertical: 10,
alignContent: 'center',
alignItems: 'center',
justifyContent: 'space-between',
},
rightBox: {
marginRight: 20,
},
});

View File

@ -20,8 +20,15 @@ const BoostPlaceHolder = ({ isDarkTheme }) => {
<View style={styles.line}>
<Placeholder.Box color={color} width={90} height={40} animate="fade" />
<View style={styles.paragraphWrapper}>
<Placeholder.Box color={color} width={120} radius={20} height={40} animate="fade" />
<Placeholder.Box color={color} width={140} radius={25} height={50} animate="fade" />
</View>
<Placeholder.Box
style={styles.rightBox}
color={color}
width={20}
height={10}
animate="fade"
/>
</View>
</View>,
);