From 091a8ff6c3dcba7b8fee1f897fca053eb560e7fe Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Fri, 11 Oct 2024 22:24:23 +0200 Subject: [PATCH] fix: show more info in debug component --- app/(auth)/(tabs)/(home)/index.tsx | 97 +++++++++++++++++++++++------- 1 file changed, 74 insertions(+), 23 deletions(-) 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} /> - +