diff --git a/app/(tabs)/diary.tsx b/app/(tabs)/diary.tsx
index f365595..ffb70c9 100644
--- a/app/(tabs)/diary.tsx
+++ b/app/(tabs)/diary.tsx
@@ -1,56 +1,21 @@
-import AlarmList from "@/components/AlarmList";
-import { Link } from "expo-router";
-import {
- Platform,
- StyleSheet,
- Text,
- TouchableOpacity,
- View,
-} from "react-native";
+import CreateOrUpdateHaulModal from "@/components/tripInfo/modal/CreateOrUpdateHaulModal";
+import { useState } from "react";
+import { Button, Platform, StyleSheet, View } from "react-native";
import { SafeAreaView } from "react-native-safe-area-context";
-const alarmExample = {
- alarms: [
- {
- name: "Ngập nước có cảnh báo",
- t: 1762226488,
- level: 1,
- id: "0:8:1",
- },
- {
- name: "Tầu cảnh báo sos",
- t: 1762226596,
- level: 3,
- id: "50:15",
- },
- {
- name: "Khói có cảnh báo",
- t: 1762226589,
- level: 1,
- id: "0:1:1",
- },
- {
- name: "Cửa có cảnh báo",
- t: 1762226547,
- level: 1,
- id: "0:7:1",
- },
- ],
- level: 3,
-};
-
export default function Warning() {
+ const [isShowModal, setIsShowModal] = useState(false);
return (
- Nhật Ký Chuyến Đi
-
-
-
- Mở Modal
-
-
-
+
+
);
@@ -88,3 +53,106 @@ const styles = StyleSheet.create({
fontWeight: "600",
},
});
+
+const fishingInfoDatas: Model.FishingLogInfo[] = [
+ {
+ fish_species_id: 10,
+ fish_name: "Cá quỷ biển (Barracuda)",
+ catch_number: 820,
+ catch_unit: "kg",
+ fish_size: 29,
+ fish_rarity: 1,
+ fish_condition: "Bị thương",
+ gear_usage: "",
+ },
+ {
+ fish_species_id: 1,
+ fish_name: "Cá thu",
+ catch_number: 1293,
+ catch_unit: "kg",
+ fish_size: 37,
+ fish_rarity: 1,
+ fish_condition: "Bị thương",
+ gear_usage: "",
+ },
+ {
+ fish_species_id: 13,
+ fish_name: "Cá song đỏ",
+ catch_number: 1738,
+ catch_unit: "kg",
+ fish_size: 28,
+ fish_rarity: 2,
+ fish_condition: "Còn sống",
+ gear_usage: "",
+ },
+ {
+ fish_species_id: 17,
+ fish_name: "Cá nược",
+ catch_number: 690,
+ catch_unit: "kg",
+ fish_size: 63,
+ fish_rarity: 1,
+ fish_condition: "Chết",
+ gear_usage: "",
+ },
+ {
+ fish_species_id: 19,
+ fish_name: "Cá hổ Thái Lan",
+ catch_number: 825,
+ catch_unit: "kg",
+ fish_size: 55,
+ fish_rarity: 4,
+ fish_condition: "Chết",
+ gear_usage: "Câu tay",
+ },
+ {
+ fish_species_id: 8,
+ fish_name: "Cá hồng phớn",
+ catch_number: 1409,
+ catch_unit: "kg",
+ fish_size: 172,
+ fish_rarity: 3,
+ fish_condition: "Chết",
+ gear_usage: "Bẫy lưới",
+ },
+ {
+ fish_species_id: 16,
+ fish_name: "Cá rồng biển",
+ catch_number: 1426,
+ catch_unit: "kg",
+ fish_size: 105,
+ fish_rarity: 3,
+ fish_condition: "Chết",
+ gear_usage: "Lưới rê",
+ },
+ {
+ fish_species_id: 3,
+ fish_name: "Cá chim trắng",
+ catch_number: 176,
+ catch_unit: "kg",
+ fish_size: 83,
+ fish_rarity: 2,
+ fish_condition: "Chết",
+ gear_usage: "",
+ },
+ {
+ fish_species_id: 14,
+ fish_name: "Cá mú cườm",
+ catch_number: 724,
+ catch_unit: "kg",
+ fish_size: 36,
+ fish_rarity: 2,
+ fish_condition: "Chết",
+ gear_usage: "",
+ },
+ {
+ fish_species_id: 18,
+ fish_name: "Cá đuối quạt",
+ catch_number: 1712,
+ catch_unit: "kg",
+ fish_size: 105,
+ fish_rarity: 4,
+ fish_condition: "Còn sống",
+ gear_usage: "Câu vàng",
+ },
+];
diff --git a/components/tripInfo/modal/CreateOrUpdateHaulModal.tsx b/components/tripInfo/modal/CreateOrUpdateHaulModal.tsx
index 2e32d7d..d6d28ca 100644
--- a/components/tripInfo/modal/CreateOrUpdateHaulModal.tsx
+++ b/components/tripInfo/modal/CreateOrUpdateHaulModal.tsx
@@ -1,19 +1,231 @@
+import Select from "@/components/Select";
+import { zodResolver } from "@hookform/resolvers/zod";
import React from "react";
-import { Modal, Text } from "react-native";
+import { Controller, useFieldArray, useForm } from "react-hook-form";
+import { Button, FlatList, Modal, Text, TextInput, View } from "react-native";
+import { z } from "zod";
interface CreateOrUpdateHaulModalProps {
isVisible: boolean;
onClose: () => void;
- haulData?: Model.FishingLog | null;
+ haulData?: Model.FishingLogInfo[] | null;
}
+const UNITS = ["con", "kg", "tấn"] as const;
+type Unit = (typeof UNITS)[number];
+
+
+const UNITS_OPTIONS = UNITS.map((unit) => ({
+ label: unit,
+ value: unit.toString(),
+}));
+
+// Zod schema cho 1 dòng cá
+const fishItemSchema = z.object({
+ id: z.number().min(1, "Chọn loài cá"),
+ quantity: z
+ .number({ invalid_type_error: "Số lượng phải là số" })
+ .positive("Số lượng > 0"),
+ unit: z.enum(UNITS, { required_error: "Chọn đơn vị" }),
+ size: z
+ .number({ invalid_type_error: "Kích thước phải là số" })
+ .positive("Kích thước > 0")
+ .optional(),
+});
+
+// Schema tổng: mảng các item
+const formSchema = z.object({
+ fish: z.array(fishItemSchema).min(1, "Thêm ít nhất 1 loài cá"),
+});
+type FormValues = z.infer;
+
+const defaultItem = (): FormValues["fish"][number] => ({
+ id: -1,
+ quantity: 1,
+ unit: "con",
+ size: undefined,
+});
+
const CreateOrUpdateHaulModal: React.FC = ({
isVisible,
onClose,
haulData,
}) => {
const [isCreateMode, setIsCreateMode] = React.useState(!haulData);
+ const { control, handleSubmit, formState, watch, reset } =
+ useForm({
+ resolver: zodResolver(formSchema),
+ defaultValues: {
+ fish: [defaultItem()],
+ },
+ mode: "onSubmit",
+ });
+ const { errors } = formState;
+
+ const { fields, append, remove } = useFieldArray({
+ control,
+ name: "fish",
+ keyName: "_id", // tránh đụng key
+ });
+
+ const onSubmit = (values: FormValues) => {
+ console.log("SUBMIT: ", JSON.stringify(values, null, 2));
+ };
+
+ // Initialize / reset form when modal visibility or haulData changes
+ React.useEffect(() => {
+ if (!isVisible) {
+ // when modal closed, clear form to default
+ reset({ fish: [defaultItem()] });
+ setIsCreateMode(true);
+ return;
+ }
+
+ // when modal opened, populate based on haulData
+ if (haulData === null) {
+ // explicit null -> start with a single default item
+ reset({ fish: [defaultItem()] });
+ setIsCreateMode(true);
+ } else if (Array.isArray(haulData) && haulData.length > 0) {
+ // map FishingLogInfo -> form rows
+ const mapped = haulData.map((h) => ({
+ id: h.fish_species_id ?? -1,
+ quantity: (h.catch_number as number) ?? 1,
+ unit: (h.catch_unit as Unit) ?? (defaultItem().unit as Unit),
+ size: (h.fish_size as number) ?? undefined,
+ }));
+ reset({ fish: mapped as any });
+ setIsCreateMode(false);
+ } else {
+ // undefined or empty array -> default
+ reset({ fish: [defaultItem()] });
+ setIsCreateMode(true);
+ }
+ }, [isVisible, haulData, reset]);
+ const renderRow = ({ item, index }: { item: any; index: number }) => {
+ return (
+
+
+ Loài cá #{index + 1}
+
+
+ {/* Species dropdown */}
+ (
+
+ Tên cá
+
+ )}
+ />
+
+ {/* Quantity */}
+ (
+
+ Số lượng
+
+ onChange(Number(t.replace(/,/g, ".")) || 0)
+ }
+ style={{ padding: 10, borderWidth: 1, borderRadius: 6 }}
+ />
+ {errors.fish?.[index]?.quantity && (
+
+ {errors.fish[index]?.quantity?.message as string}
+
+ )}
+
+ )}
+ />
+
+ {/* Unit dropdown */}
+ (
+
+ Đơn vị
+
+ )}
+ />
+
+ {/* Size (optional) */}
+ (
+
+
+ Kích thước (cm) — tùy chọn
+
+
+ onChange(t ? Number(t.replace(/,/g, ".")) : undefined)
+ }
+ style={{ padding: 10, borderWidth: 1, borderRadius: 6 }}
+ />
+ {errors.fish?.[index]?.size && (
+
+ {errors.fish[index]?.size?.message as string}
+
+ )}
+
+ )}
+ />
+
+ {/* Remove row */}
+
+
+
+ );
+ };
return (
= ({
onRequestClose={onClose}
>
{isCreateMode ? "Create Haul" : "Update Haul"}
+ it._id}
+ renderItem={renderRow}
+ ListFooterComponent={
+
+
+ }
+ />
+
+ {errors.fish && (
+
+ {(errors.fish as any)?.message}
+
+ )}
+
+
+
+
);
};
export default CreateOrUpdateHaulModal;
+
+const fishesExampleData = [
+ {
+ id: 1,
+ name: "Cá thu",
+ scientific_name: "Scomberomorus spp.",
+ group_name: "Cá nổi",
+ species_code: "TUNA01",
+ note: "Loài phổ biến ở biển ven bờ và xa bờ",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 2,
+ name: "Cá nục",
+ scientific_name: "Decapterus spp.",
+ group_name: "Cá nổi",
+ species_code: "MACK01",
+ note: "Loài cá thương mại nhỏ",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 3,
+ name: "Cá chim trắng",
+ scientific_name: "Pampus argenteus",
+ group_name: "Cá nổi",
+ species_code: "POMF01",
+ note: "Thịt ngon, giá trị kinh tế cao",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 4,
+ name: "Cá bống tượng",
+ scientific_name: "Oxyeleotris marmorata",
+ group_name: "Cá đáy",
+ species_code: "GOBY01",
+ note: "Cá đáy nước ngọt và lợ",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 5,
+ name: "Cá mú đỏ",
+ scientific_name: "Epinephelus malabaricus",
+ group_name: "Nhóm mú",
+ species_code: "GROUP01",
+ note: "Cá mú đỏ phổ biến tại các rạn san hô",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 6,
+ name: "Cá mú trắng",
+ scientific_name: "Epinephelus fuscoguttatus",
+ group_name: "Nhóm mú",
+ species_code: "GROUP02",
+ note: "Cá mú trắng rạn san hô",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 8,
+ name: "Cá hồng phớn",
+ scientific_name: "Nemipterus virgatus",
+ group_name: "Cá đáy",
+ species_code: "BREAM01",
+ note: "Golden threadfin bream, rất phổ biến",
+ default_unit: "kg",
+ rarity_level: 3,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 9,
+ name: "Cá hổ Napoleon",
+ scientific_name: "Cheilinus undulatus",
+ group_name: "Rạn san hô",
+ species_code: "WRASSE01",
+ note: "Humphead wrasse, loài nguy cấp được bảo vệ",
+ default_unit: "kg",
+ rarity_level: 4,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 10,
+ name: "Cá quỷ biển (Barracuda)",
+ scientific_name: "Sphyraena barracuda",
+ group_name: "Cá săn mồi",
+ species_code: "BARRA01",
+ note: "Loài cá săn mồi nhanh",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 11,
+ name: "Cá ngừ đại dương",
+ scientific_name: "Thunnus albacares",
+ group_name: "Cá nổi xa bờ",
+ species_code: "TUNA02",
+ note: "Tuna phổ biến vùng biển xa",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 12,
+ name: "Cá nục vằn",
+ scientific_name: "Scomberomorus commerson",
+ group_name: "Cá nổi",
+ species_code: "MACK02",
+ note: "Mackerel phổ biến ở biển miền Trung",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 13,
+ name: "Cá song đỏ",
+ scientific_name: "Lutjanus argentimaculatus",
+ group_name: "Cá đáy",
+ species_code: "SNAPPER01",
+ note: "Mangrove red snapper, giá trị kinh tế cao",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 14,
+ name: "Cá mú cườm",
+ scientific_name: "Epinephelus coioides",
+ group_name: "Nhóm mú",
+ species_code: "GROUP03",
+ note: "Brown-spotted grouper, phổ biến ở vùng biển",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 15,
+ name: "Cá hồng",
+ scientific_name: "Lutjanus malabaricus",
+ group_name: "Cá đáy",
+ species_code: "SNAPPER02",
+ note: "Malabar red snapper",
+ default_unit: "kg",
+ rarity_level: 2,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 16,
+ name: "Cá rồng biển",
+ scientific_name: "Choerodon schoenleinii",
+ group_name: "Rạn san hô",
+ species_code: "DRAGON01",
+ note: "Cá rồng biển, cá cảnh hiếm",
+ default_unit: "kg",
+ rarity_level: 3,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 17,
+ name: "Cá nược",
+ scientific_name: "Pomatomus saltatrix",
+ group_name: "Cá nổi",
+ species_code: "QUEEN01",
+ note: "Bluefish phổ biến",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 18,
+ name: "Cá đuối quạt",
+ scientific_name: "Platyrhina sinensis",
+ group_name: "Cá mó",
+ species_code: "RAY01",
+ note: "Fanray, loài đe dọa",
+ default_unit: "kg",
+ rarity_level: 4,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 19,
+ name: "Cá hổ Thái Lan",
+ scientific_name: "Datnioides pulcher",
+ group_name: "Cá nước lợ",
+ species_code: "TIGER01",
+ note: "Siamese tigerfish, nguy cấp",
+ default_unit: "kg",
+ rarity_level: 4,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 20,
+ name: "Cá bớp vây vàng",
+ scientific_name: "Taractes rubescens",
+ group_name: "Cá nổi xa bờ",
+ species_code: "POMF02",
+ note: "Loài cá biển sâu ít gặp",
+ default_unit: "kg",
+ rarity_level: 3,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-08-29T06:34:38.785313Z",
+ is_deleted: false,
+ },
+ {
+ id: 43,
+ name: "Cá Min Mon",
+ scientific_name: "Minhmon",
+ group_name: "Cá béo",
+ species_code: "Caminhmon",
+ note: "Cá béo nước cạn",
+ default_unit: "tạ",
+ rarity_level: 1,
+ created_at: "2025-10-01T03:09:59.642716Z",
+ updated_at: "2025-10-01T03:10:30.977697Z",
+ is_deleted: true,
+ },
+ {
+ id: 7,
+ name: "Cá bơn vàng",
+ scientific_name: "Cynoglossus robustus",
+ group_name: "Cá đáy",
+ species_code: "SOLE01",
+ note: "Cá bơn đáy cát",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-08-29T06:34:38.785313Z",
+ updated_at: "2025-10-01T03:10:39.927546Z",
+ is_deleted: false,
+ },
+ {
+ id: 22,
+ name: "Cá mập",
+ scientific_name: "Carcharodon",
+ group_name: "Cá đáy",
+ species_code: "Carcharodon",
+ note: "Cá trắng",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-09-25T11:02:20.705804Z",
+ updated_at: "2025-10-01T03:11:13.631101Z",
+ is_deleted: true,
+ },
+ {
+ id: 28,
+ name: "cá cơm",
+ scientific_name: "cá cơm",
+ group_name: "cá cơm",
+ species_code: "cacom",
+ note: "no cmt",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-09-30T07:35:04.623573Z",
+ updated_at: "2025-09-30T08:06:18.651249Z",
+ is_deleted: true,
+ },
+ {
+ id: 29,
+ name: "cá minh mon",
+ scientific_name: "cá min mon",
+ group_name: "1",
+ species_code: "cá min mon",
+ note: "no",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-09-30T07:36:04.908601Z",
+ updated_at: "2025-09-30T08:09:34.361879Z",
+ is_deleted: true,
+ },
+ {
+ id: 42,
+ name: "cá mập",
+ scientific_name: "camap",
+ group_name: "cá đáy",
+ species_code: "camap",
+ note: "no",
+ default_unit: "kg",
+ rarity_level: 1,
+ created_at: "2025-09-30T08:38:14.151734Z",
+ updated_at: "2025-10-01T03:08:13.025517Z",
+ is_deleted: true,
+ },
+];
diff --git a/package-lock.json b/package-lock.json
index 4aa4db1..7a18e81 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -12,6 +12,7 @@
"@expo/vector-icons": "^15.0.3",
"@gluestack-ui/core": "^3.0.12",
"@gluestack-ui/utils": "^3.0.11",
+ "@hookform/resolvers": "^5.2.2",
"@legendapp/motion": "^2.5.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.4.0",
@@ -38,6 +39,7 @@
"react": "19.1.0",
"react-aria": "^3.44.0",
"react-dom": "19.1.0",
+ "react-hook-form": "^7.66.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
@@ -2389,6 +2391,18 @@
"tailwindcss": ">=3.0.0"
}
},
+ "node_modules/@hookform/resolvers": {
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-5.2.2.tgz",
+ "integrity": "sha512-A/IxlMLShx3KjV/HeTcTfaMxdwy690+L/ZADoeaTltLx+CVuzkeVIPuybK3jrRfw7YZnmdKsVVHAlEPIAEUNlA==",
+ "license": "MIT",
+ "dependencies": {
+ "@standard-schema/utils": "^0.3.0"
+ },
+ "peerDependencies": {
+ "react-hook-form": "^7.55.0"
+ }
+ },
"node_modules/@humanfs/core": {
"version": "0.19.1",
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
@@ -5101,6 +5115,12 @@
"@sinonjs/commons": "^3.0.0"
}
},
+ "node_modules/@standard-schema/utils": {
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz",
+ "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
+ "license": "MIT"
+ },
"node_modules/@swc/helpers": {
"version": "0.5.17",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
@@ -13244,6 +13264,22 @@
"react": ">=17.0.0"
}
},
+ "node_modules/react-hook-form": {
+ "version": "7.66.0",
+ "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.66.0.tgz",
+ "integrity": "sha512-xXBqsWGKrY46ZqaHDo+ZUYiMUgi8suYu5kdrS20EG8KiL7VRQitEbNjm+UcrDYrNi1YLyfpmAeGjCZYXLT9YBw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/react-hook-form"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17 || ^18 || ^19"
+ }
+ },
"node_modules/react-is": {
"version": "19.2.0",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-19.2.0.tgz",
diff --git a/package.json b/package.json
index 35ea97c..61e3d14 100644
--- a/package.json
+++ b/package.json
@@ -15,6 +15,7 @@
"@expo/vector-icons": "^15.0.3",
"@gluestack-ui/core": "^3.0.12",
"@gluestack-ui/utils": "^3.0.11",
+ "@hookform/resolvers": "^5.2.2",
"@legendapp/motion": "^2.5.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-navigation/bottom-tabs": "^7.4.0",
@@ -41,6 +42,7 @@
"react": "19.1.0",
"react-aria": "^3.44.0",
"react-dom": "19.1.0",
+ "react-hook-form": "^7.66.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-aware-scroll-view": "^0.9.5",