Deskripsi: - update button save button pada tambah edit tugas divisi - update button save pada tambah file, tambah task, cancel tugas divisi - ui tambah task tugas tanggal divisi No Issues
47 lines
1.9 KiB
TypeScript
47 lines
1.9 KiB
TypeScript
import ButtonBackHeader from "@/components/buttonBackHeader";
|
|
import ButtonSaveHeader from "@/components/buttonSaveHeader";
|
|
import ButtonSelect from "@/components/buttonSelect";
|
|
import { InputForm } from "@/components/inputForm";
|
|
import Styles from "@/constants/Styles";
|
|
import { router, Stack, useLocalSearchParams } from "expo-router";
|
|
import { SafeAreaView, ScrollView, ToastAndroid, View } from "react-native";
|
|
|
|
export default function CreateTaskDivision() {
|
|
const { id } = useLocalSearchParams()
|
|
|
|
return (
|
|
<SafeAreaView>
|
|
<Stack.Screen
|
|
options={{
|
|
headerLeft: () => <ButtonBackHeader onPress={() => { router.back() }} />,
|
|
headerTitle: `Tambah Tugas`,
|
|
headerTitleAlign: 'center',
|
|
headerRight: () => <ButtonSaveHeader category="create" onPress={() => {
|
|
ToastAndroid.show('Berhasil menambah data', ToastAndroid.SHORT)
|
|
router.push('../task?status=0')
|
|
}} />
|
|
}}
|
|
/>
|
|
<ScrollView>
|
|
<View style={[Styles.p15, Styles.mb100]}>
|
|
<InputForm label="Judul Tugas" type="default" placeholder="Judul Tugas" required />
|
|
<ButtonSelect value="Tambah Tanggal & Tugas" />
|
|
<ButtonSelect value="Upload File" />
|
|
<ButtonSelect value="Tambah Anggota" />
|
|
{/* <ButtonForm
|
|
text="SIMPAN"
|
|
onPress={() => {
|
|
AlertKonfirmasi({
|
|
title: 'Konfirmasi',
|
|
desc: 'Apakah anda yakin ingin menambahkan data?',
|
|
onPress: () => {
|
|
ToastAndroid.show('Berhasil menambahkan data', ToastAndroid.SHORT)
|
|
router.push('../task?status=0')
|
|
}
|
|
})
|
|
}} /> */}
|
|
</View>
|
|
</ScrollView>
|
|
</SafeAreaView>
|
|
)
|
|
} |