Skip to content

Commit

Permalink
fix: always display RadioButtonIOS icon in "ltr" direction (#2034)
Browse files Browse the repository at this point in the history
  • Loading branch information
avirankatzsofi committed Jul 3, 2020
1 parent db1bbf0 commit 4237fd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/RadioButton/RadioButtonIOS.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import { StyleSheet, View, I18nManager } from 'react-native';
import { StyleSheet, View } from 'react-native';
import color from 'color';
import { RadioButtonContext, RadioButtonContextType } from './RadioButtonGroup';
import { handlePress, isChecked } from './utils';
Expand Down Expand Up @@ -115,7 +115,7 @@ class RadioButtonIOS extends React.Component<Props> {
name="check"
size={24}
color={checkedColor}
direction={I18nManager.isRTL ? 'rtl' : 'ltr'}
direction="ltr"
/>
</View>
</TouchableRipple>
Expand Down

0 comments on commit 4237fd6

Please sign in to comment.