Revert "fix: middlecontrols blocking back button"

This reverts commit 38419aa385.
This commit is contained in:
Adrian Castro
2024-02-13 12:19:44 +01:00
parent 38419aa385
commit f6b5f3d342
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ interface HeaderProps {
export const Header = ({ data }: HeaderProps) => {
return (
<Controls className="absolute top-0 z-10 flex w-full flex-row items-center justify-between px-6 pt-6">
<Controls className="absolute top-0 flex w-full flex-row items-center justify-between px-6 pt-6">
<BackButton className="w-36" />
<Text className="font-bold">
{data.season && data.episode

View File

@@ -15,7 +15,7 @@ export const MiddleControls = () => {
return (
<TouchableWithoutFeedback onPress={handleTouch}>
<View className="h-half absolute bottom-0 flex w-full flex-1 flex-row items-center justify-center gap-24">
<View className="absolute flex h-full w-full flex-1 flex-row items-center justify-center gap-24">
<Controls>
<SeekButton type="backward" />
</Controls>