volume cleanup

This commit is contained in:
Jorrin
2024-02-14 20:00:36 +01:00
parent 82a3f431fa
commit c670047713
6 changed files with 70 additions and 28 deletions

View File

@@ -18,12 +18,12 @@ export const ControlsOverlay = ({ headerData }: ControlsOverlayProps) => {
setIsIdle(!idle);
};
return (
<TouchableWithoutFeedback onPress={handleTouch}>
<View className="absolute left-0 top-0 flex h-full w-full flex-1">
<Header data={headerData} />
<View className="absolute left-0 top-0 flex h-full w-full flex-1">
<Header data={headerData} />
<TouchableWithoutFeedback onPress={handleTouch}>
<MiddleControls />
<BottomControls />
</View>
</TouchableWithoutFeedback>
</TouchableWithoutFeedback>
<BottomControls />
</View>
);
};