This commit is contained in:
2025-09-02 13:18:20 +02:00
parent 98367af0b7
commit 2a821182c5
5 changed files with 285 additions and 47 deletions
+10 -3
View File
@@ -1,8 +1,15 @@
import { useRoute } from "@react-navigation/core";
import { Audio } from "expo-audio";
import React, { useEffect, useMemo, useState } from "react";
import { Pressable, ScrollView, StyleSheet, Text, View, Image as RNImage } from "react-native";
import { Image as ExpoImage } from "expo-image";
import React, { useEffect, useMemo, useState } from "react";
import {
Pressable,
Image as RNImage,
ScrollView,
StyleSheet,
Text,
View,
} from "react-native";
import { SheetManager } from "react-native-actions-sheet";
import { useGlobal } from "reactn";
import { background, icons, img } from "../../assets";
@@ -336,7 +343,7 @@ const MusicDetails = () => {
/>
<View style={{ ...Style.containerRow, gap: 24, alignSelf: "center" }}>
{/* Previous (rewind 10s) */}
<Pressable onPress={() => seekBy(-10)}>
<Pressable onPress={() => seekBy(-10)}>
<RNImage
source={icons.forward}
style={{