chore: add selector to player controls

This commit is contained in:
Adrian Castro
2024-02-23 10:11:08 +01:00
parent 39d5acee77
commit aaa6a8af21
2 changed files with 3 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ import { TouchableOpacity, View } from "react-native";
import { usePlayerStore } from "~/stores/player/store";
import { Text } from "../ui/Text";
import { AudioTrackSelector } from "./AudioTrackSelector";
import { CaptionsSelector } from "./CaptionsSelector";
import { Controls } from "./Controls";
import { ProgressBar } from "./ProgressBar";
@@ -60,6 +61,7 @@ export const BottomControls = () => {
<SeasonSelector />
<CaptionsSelector />
<SourceSelector />
<AudioTrackSelector />
</View>
</View>
);