fix(ios) fix drag handle not rendering with latest react-native-svg

Fill must be properly specified.
This commit is contained in:
Saúl Ibarra Corretgé 2021-01-07 11:39:28 +01:00 committed by Saúl Ibarra Corretgé
parent a3c6e690dd
commit dc5a776123
2 changed files with 3 additions and 6 deletions

View File

@ -171,10 +171,6 @@ ColorSchemeRegistry.register('BottomSheet', {
underlayColor: ColorPalette.overflowMenuItemUnderlay
},
expandIcon: {
color: schemeColor('icon')
},
/**
* Bottom sheet's base style.
*/

View File

@ -166,8 +166,9 @@ class OverflowMenu extends PureComponent<Props, State> {
styles.expandMenuContainer
] }>
<TouchableOpacity onPress = { this._onToggleMenu }>
{ /* $FlowFixMeProps */ }
<IconDragHandle style = { this.props._bottomSheetStyles.expandIcon } />
{ /* $FlowFixMe */ }
<IconDragHandle
fill = { this.props._bottomSheetStyles.buttons.iconStyle.color } />
</TouchableOpacity>
</View>
);