diff --git a/native/navigation/expand-buttons.react.js b/native/navigation/expand-buttons.react.js
index 1687ad349..b5c5d2d38 100644
--- a/native/navigation/expand-buttons.react.js
+++ b/native/navigation/expand-buttons.react.js
@@ -1,74 +1,74 @@
// @flow
import Icon from '@expo/vector-icons/FontAwesome.js';
import * as React from 'react';
import { TouchableOpacity, View } from 'react-native';
import { useStyles } from '../themes/colors.js';
const iconSize = 12;
const buttonSize = 24;
-const hitSlopValue = 6;
+const hitSlopValue = 10;
const padding = (buttonSize - iconSize) / 2;
const hitSlop = {
bottom: hitSlopValue,
left: hitSlopValue,
right: hitSlopValue,
top: hitSlopValue,
};
type Props = {
+onPress: () => void,
+expanded: boolean,
};
function ExpandButton(props: Props): React.Node {
const styles = useStyles(unboundStyles);
const style = props.expanded
? styles.expandButtonExpanded
: styles.expandButton;
const icon = props.expanded ? 'caret-down' : 'caret-right';
return (
);
}
function ExpandButtonDisabled(): React.Node {
const styles = useStyles(unboundStyles);
return (
);
}
const unboundStyles = {
expandButton: {
color: 'drawerExpandButton',
},
expandButtonDisabled: {
color: 'drawerExpandButtonDisabled',
},
expandButtonExpanded: {
color: 'drawerExpandButton',
},
wrapper: {
width: buttonSize,
alignItems: 'center',
padding: padding,
},
};
export { ExpandButton, ExpandButtonDisabled };