/* eslint-disable @typescript-eslint/no-unused-vars */ import { ButtonCustom, Grid, SelectCustom, Spacing, StackCustom, TextAreaCustom, TextCustom, TextInputCustom, ViewWrapper, } from "@/components"; import BoxButtonOnFooter from "@/components/Box/BoxButtonOnFooter"; import InformationBox from "@/components/Box/InformationBox"; import ButtonCenteredOnly from "@/components/Button/ButtonCenteredOnly"; import LandscapeFrameUploaded from "@/components/Image/LandscapeFrameUploaded"; import { MainColor } from "@/constants/color-palet"; import dummyMasterBidangBisnis from "@/lib/dummy-data/master-bidang-bisnis"; import dummyMasterSubBidangBisnis from "@/lib/dummy-data/master-sub-bidang-bisnis"; import { Ionicons } from "@expo/vector-icons"; import { useLocalSearchParams } from "expo-router"; import { useState } from "react"; import { Text, TouchableOpacity, View } from "react-native"; import PhoneInput, { ICountry } from "react-native-international-phone-number"; export default function PortofolioCreate() { const { id } = useLocalSearchParams(); const [selectedCountry, setSelectedCountry] = useState(null); const [inputValue, setInputValue] = useState(""); const [data, setData] = useState({ name: "", bidang_usaha: "", sub_bidang_usaha: "", alamat: "", nomor_telepon: "", deskripsi: "", }); function handleInputValue(phoneNumber: string) { setInputValue(phoneNumber); } function handleSelectedCountry(country: ICountry) { setSelectedCountry(country); } function handleSave() { console.log("save"); } const buttonSave = ( Selanjutnya ); return ( {/* Portofolio Create {id} */} ({ label: item.name, value: item.id, }))} value="" onChange={(value) => console.log(value)} /> ({ label: item.name, value: item.id, }))} value="" onChange={(value) => console.log(value)} /> console.log("delete")}> console.log("add")}> Tambah Pilihan Nomor Telepon * setData({ ...data, deskripsi: value })} autosize minRows={2} maxRows={5} required showCount maxLength={100} /> console.log("upload")}> Upload ); }