upd: tampilan

Deskripsi:
- masang toast
- ganti tag Text

No Issues
This commit is contained in:
2025-07-29 11:41:03 +08:00
parent db98c3afc5
commit 42bf1589b4
86 changed files with 379 additions and 307 deletions

View File

@@ -1,6 +1,7 @@
import ButtonBackHeader from "@/components/buttonBackHeader";
import ButtonSaveHeader from "@/components/buttonSaveHeader";
import { InputForm } from "@/components/inputForm";
import Text from "@/components/Text";
import Styles from "@/constants/Styles";
import { apiCreateTaskTugas } from "@/lib/api";
import { setUpdateTask } from "@/lib/taskUpdate";
@@ -11,10 +12,9 @@ import { useEffect, useState } from "react";
import {
SafeAreaView,
ScrollView,
Text,
ToastAndroid,
View,
View
} from "react-native";
import Toast from "react-native-toast-message";
import DateTimePicker, { DateType } from "react-native-ui-datepicker";
import { useDispatch, useSelector } from "react-redux";
@@ -86,14 +86,14 @@ export default function TaskDivisionAddTask() {
});
if (response.success) {
dispatch(setUpdateTask({ ...update, task: !update.task, progress: !update.progress }));
ToastAndroid.show("Berhasil menambah data", ToastAndroid.SHORT);
Toast.show({ type: 'small', text1: 'Berhasil menambah data', })
router.back();
} else {
ToastAndroid.show(response.message, ToastAndroid.SHORT);
Toast.show({ type: 'small', text1: response.message, })
}
} catch (error) {
console.error(error);
ToastAndroid.show("Gagal menambah data", ToastAndroid.SHORT);
Toast.show({ type: 'small', text1: 'Gagal menambah data', })
}
}