import { Dimensions, StyleSheet } from "react-native"; import React, { useState } from "react"; import { Button, ButtonSize, Text, View } from "react-native-ui-lib"; import { AntDesign } from "@expo/vector-icons"; import LinearGradient from "react-native-linear-gradient"; import AddChoreDialog from "./AddChoreDialog"; import PlusIcon from "@/assets/svgs/PlusIcon"; const AddChore = () => { const [isVisible, setIsVisible] = useState(false); return ( {isVisible && ( )} ); }; export default AddChore; const styles = StyleSheet.create({ gradient: { height: 150, position: "absolute", bottom: 0, width: "100%", justifyContent: "center", alignItems: "center", }, buttonContainer: { width: "100%", alignItems: "center", }, button: { backgroundColor: "rgb(253, 23, 117)", height: 53.26, borderRadius: 30, width: 335, }, });