This commit is contained in:
2025-09-03 13:46:18 +02:00
parent 5c3f2715c2
commit 2b24900e0c
8 changed files with 240 additions and 7 deletions
+13
View File
@@ -10,6 +10,7 @@ import React, {
useState,
} from "react";
import { Image, Platform, Pressable, Text, View } from "react-native";
import { SheetManager } from "react-native-actions-sheet";
import Carousel from "react-native-reanimated-carousel";
import { responsiveHeight } from "react-native-responsive-dimensions";
import { icons, img } from "../assets";
@@ -353,6 +354,18 @@ const PlaybackItem = ({ item, isActive, userCache, getUserByUid }) => {
</Text>
)}
</Pressable>
<Pressable
onPress={() => {
if (item?.id) {
SheetManager.show("Comments", {
payload: { projectId: item.id },
});
}
}}
style={{ alignItems: "center" }}
>
<Image source={icons.message} style={size({ size: 26 })} />
</Pressable>
<Pressable>
<Image source={icons.share} style={size({ size: 26 })} />
</Pressable>