Change icon color is machines available
This commit is contained in:
부모
3d631cc816
커밋
7128a68641
1개의 변경된 파일과 4개의 추가작업 그리고 1개의 파일을 삭제
|
@ -29,11 +29,14 @@ class ProxiwashListItem extends React.Component<Props> {
|
|||
(props.nbAvailable <= 1)
|
||||
? i18n.t('proxiwashScreen.numAvailable')
|
||||
: i18n.t('proxiwashScreen.numAvailablePlural'));
|
||||
const iconColor = props.nbAvailable > 0
|
||||
? this.props.theme.colors.success
|
||||
: this.props.theme.colors.primary;
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Avatar.Icon
|
||||
icon={props.isDryer ? 'tumble-dryer' : 'washing-machine'}
|
||||
color={this.props.theme.colors.primary}
|
||||
color={iconColor}
|
||||
style={styles.icon}
|
||||
/>
|
||||
<View style={{justifyContent: 'center'}}>
|
||||
|
|
불러오는 중…
Reference in a new issue