diff --git a/app/(auth)/(tabs)/(home)/index.tsx b/app/(auth)/(tabs)/(home)/index.tsx index a4ddce6a..157e9709 100644 --- a/app/(auth)/(tabs)/(home)/index.tsx +++ b/app/(auth)/(tabs)/(home)/index.tsx @@ -4,10 +4,11 @@ import { VlcPlayerView } from "@/modules/vlc-player"; import { PlaybackStatePayload, ProgressUpdatePayload, + TrackInfo, VlcPlayerViewRef, } from "@/modules/vlc-player/src/VlcPlayer.types"; import React, { useEffect, useRef, useState } from "react"; -import { Button, ScrollView, View } from "react-native"; +import { Button, ScrollView, TouchableOpacity, View } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; export default function index() { @@ -70,7 +71,11 @@ export default function index() { progressUpdateInterval={2000} onVideoStateChange={onPlaybackStateChanged} /> - +