import {Appbar, Portal, Button, Dialog, Text, useTheme } from "react-native-paper"; import { View } from "react-native"; import styles from "@/assets/styles"; import React, {useState} from "react"; import Broken from "@/components/Broken"; interface BNProps { isProfileActive: boolean; isMenuActive: boolean; } const BottomNav: React.FC = ({ isProfileActive, isMenuActive }) => { const theme = useTheme(); const [menuVisible, setMenuVisible] = useState(false); return ( Daisy Knight Dog Park setMenuVisible(false)} style={{ backgroundColor: theme.colors.primaryContainer, maxHeight: 400 }}> Location ) } export default BottomNav;