fix(ios) fix drag handle not rendering with latest react-native-svg
Fill must be properly specified.
This commit is contained in:
parent
a3c6e690dd
commit
dc5a776123
|
@ -171,10 +171,6 @@ ColorSchemeRegistry.register('BottomSheet', {
|
|||
underlayColor: ColorPalette.overflowMenuItemUnderlay
|
||||
},
|
||||
|
||||
expandIcon: {
|
||||
color: schemeColor('icon')
|
||||
},
|
||||
|
||||
/**
|
||||
* Bottom sheet's base style.
|
||||
*/
|
||||
|
|
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue