import React from 'react'; import { Button } from '@tamagui/button'; import { Plus } from 'lucide-react'; import { useAppearance } from '@/hooks/use-appearance'; type FloatingActionButtonProps = { onPress: () => void; onLongPress?: () => void; }; export default function FloatingActionButton({ onPress, onLongPress }: FloatingActionButtonProps) { const longPressTriggered = React.useRef(false); const { resolved } = useAppearance(); const isDark = resolved === 'dark'; return ( ); }