add stacks for home/search

so they can access album/artist/etc screen
This commit is contained in:
austinried
2021-07-09 20:39:14 +09:00
parent d245d4b786
commit cd9ae9633c
7 changed files with 113 additions and 83 deletions

View File

@@ -15,6 +15,11 @@ const PressableOpacity: React.FC<PressableOpacityProps> = props => {
props.disabled === true ? setOpacity(0.3) : setOpacity(1)
}, [props.disabled])
props = {
...props,
unstable_pressDelay: props.unstable_pressDelay === undefined ? 60 : props.unstable_pressDelay,
}
return (
<Pressable
{...props}