mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 18:13:25 +00:00
rename file
This commit is contained in:
21
apps/expo/src/components/player/MiddleControls.tsx
Normal file
21
apps/expo/src/components/player/MiddleControls.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import { View } from "react-native";
|
||||
|
||||
import { Controls } from "./Controls";
|
||||
import { PlayButton } from "./PlayButton";
|
||||
import { SeekButton } from "./SeekButton";
|
||||
|
||||
export const MiddleControls = () => {
|
||||
return (
|
||||
<View className="absolute flex h-full w-full flex-1 flex-row items-center justify-center gap-24">
|
||||
<Controls>
|
||||
<SeekButton type="backward" />
|
||||
</Controls>
|
||||
<Controls>
|
||||
<PlayButton />
|
||||
</Controls>
|
||||
<Controls>
|
||||
<SeekButton type="forward" />
|
||||
</Controls>
|
||||
</View>
|
||||
);
|
||||
};
|
Reference in New Issue
Block a user