upd: project

Deskripsi:
- update button save pada tambah edit project
- ui edit tugas dan tanggal project
- modal menu detail tugas dan tanggal
- modal menu detail file
- modal menu detail anggota project

No Issues
This commit is contained in:
amel
2025-03-13 14:56:24 +08:00
parent c9e5260644
commit 4139c95794
12 changed files with 387 additions and 129 deletions

View File

@@ -1,6 +1,6 @@
import Styles from "@/constants/Styles";
import { MaterialCommunityIcons } from "@expo/vector-icons";
import { Text, View } from "react-native";
import { Pressable, Text, View } from "react-native";
type Props = {
@@ -8,11 +8,12 @@ type Props = {
title: string
dateStart: string
dateEnd: string
onPress?: () => void
}
export default function ItemSectionTanggalTugas({ done, title, dateStart, dateEnd }: Props) {
export default function ItemSectionTanggalTugas({ done, title, dateStart, dateEnd, onPress }: Props) {
return (
<View style={[Styles.mb15, { borderBottomColor: '#d6d8f6', borderBottomWidth: 1 }]}>
<Pressable style={[Styles.mb15, { borderBottomColor: '#d6d8f6', borderBottomWidth: 1 }]} onPress={onPress}>
<View style={[Styles.rowItemsCenter]}>
{
done ?
@@ -48,6 +49,6 @@ export default function ItemSectionTanggalTugas({ done, title, dateStart, dateEn
</View>
</View>
</View>
</View>
</Pressable>
)
}