import { View, Text, TouchableOpacity, ScrollView } from 'react-native' import { useRouter } from 'expo-router' import { usePlayerStore } from '../src/store/playerStore' import { BottomNavBar } from '../src/components/BottomNavBar' export default function SharePlayScreen() { const router = useRouter() const currentSong = usePlayerStore(s => s.currentSong) const isPlaying = usePlayerStore(s => s.isPlaying) const togglePlay = usePlayerStore(s => s.togglePlay) return ( router.push('/account' as any)} className="w-10 h-10 rounded-full bg-music-card items-center justify-center"> 👤 SharePlay 📢 👤 1 Currently Playing {currentSong?.title || 'No song'} {currentSong?.artist} ⏮️ {isPlaying ? '⏸' : '▶️'} ⏭️ Up Next ➕ Add Song to Cue ) }