everything is ok
This commit is contained in:
parent
4c8bb9043e
commit
52b1ed736c
File diff suppressed because one or more lines are too long
|
@ -287,8 +287,8 @@ export default class SuperViseurGroupeHome extends BaseScreen {
|
|||
backgroundColor: theme.primary,
|
||||
justifyContent: 'center',
|
||||
marginRight: 10,
|
||||
width: 150,
|
||||
marginTop: 35,
|
||||
width: 160,
|
||||
marginTop: 5,
|
||||
alignItems: 'center',
|
||||
borderRadius: 10,
|
||||
}}>
|
||||
|
@ -300,16 +300,17 @@ export default class SuperViseurGroupeHome extends BaseScreen {
|
|||
|
||||
<View style={{
|
||||
width: 1,
|
||||
backgroundColor: Color.borderColor
|
||||
|
||||
backgroundColor: Color.borderColor,
|
||||
marginTop: -20
|
||||
}} />
|
||||
|
||||
<View style={{ flex: 1, flexDirection: 'column' }}>
|
||||
<View style={{ flex: 1, flexDirection: 'column', marginTop: -15 }}>
|
||||
|
||||
<View
|
||||
style={{
|
||||
flexDirection: 'row',
|
||||
alignItems: 'center',
|
||||
marginTop: -10
|
||||
}}>
|
||||
<View
|
||||
style={[
|
||||
|
@ -325,7 +326,7 @@ export default class SuperViseurGroupeHome extends BaseScreen {
|
|||
<Text style={[Typography.title3, Color.primaryColor], { marginBottom: 1 }}>
|
||||
{I18n.t('PRINCIPAL_ACCOUNT_TITLE')}
|
||||
</Text>
|
||||
<Text style={[Typography.body2]}>{thousandsSeparators(item.balance_princ)}</Text>
|
||||
<Text style={[Typography.body2]}>{item.balance_princ === null ? 0 : thousandsSeparators(item.balance_princ)}</Text>
|
||||
</View>
|
||||
</View>
|
||||
|
||||
|
@ -333,6 +334,7 @@ export default class SuperViseurGroupeHome extends BaseScreen {
|
|||
style={{
|
||||
flexDirection: 'row',
|
||||
alignItems: 'center',
|
||||
marginTop: -10
|
||||
}}>
|
||||
<View
|
||||
style={[
|
||||
|
@ -348,7 +350,7 @@ export default class SuperViseurGroupeHome extends BaseScreen {
|
|||
<Text style={[Typography.title3, Color.primaryColor], { marginBottom: 1 }}>
|
||||
{I18n.t('COMMISSION_ACCOUNT_TITLE')}
|
||||
</Text>
|
||||
<Text style={Typography.body2}>{thousandsSeparators(item.balance_com)}</Text>
|
||||
<Text style={Typography.body2}>{item.balance_com === null ? 0 : thousandsSeparators(item.balance_com)}</Text>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
|
|
Loading…
Reference in New Issue