Browse Source

Use chevron instead of arrow on ios

keplyx 4 years ago
parent
commit
f171578c8d
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      components/CustomHeader.js

+ 1
- 1
components/CustomHeader.js View File

@@ -100,7 +100,7 @@ export default class CustomHeader extends React.Component<Props> {
100 100
                     }}>
101 101
                     <CustomMaterialIcon
102 102
                         color={Platform.OS === 'ios' ? ThemeManager.getCurrentThemeVariables().brandPrimary : "#fff"}
103
-                        icon={Platform.OS === 'chevron-left' ? "" : "arrow-left"}/>
103
+                        icon={Platform.OS === 'ios' ? 'chevron-left' : "arrow-left"}/>
104 104
                 </Touchable>;
105 105
         else
106 106
             button = this.props.leftButton;

Loading…
Cancel
Save