forked from vergnet/application-amicale
Use chevron instead of arrow on ios
This commit is contained in:
parent
de787bf5a6
commit
f171578c8d
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ export default class CustomHeader extends React.Component<Props> {
|
||||||
}}>
|
}}>
|
||||||
<CustomMaterialIcon
|
<CustomMaterialIcon
|
||||||
color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}
|
color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}
|
||||||
icon={Platform.OS === 'chevron-left' ? "" : "arrow-left"}/>
|
icon={Platform.OS === 'ios' ? 'chevron-left' : "arrow-left"}/>
|
||||||
</Touchable>;
|
</Touchable>;
|
||||||
else
|
else
|
||||||
button = this.props.leftButton;
|
button = this.props.leftButton;
|
||||||
|
|
Loading…
Reference in a new issue