import { 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"; const AddChore = () => { const [isVisible, setIsVisible] = useState(false); return ( ); }; 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)", paddingVertical: 15, paddingHorizontal: 30, borderRadius: 30, width: 335, }, });