import React from 'react'; import MediaControls from './components/MediaControls'; import ProgressBar from './components/ProgressBar'; import NowPlaying from './components/NowPlaying'; import Queue from './components/Queue'; import ConnectionNotice from './components/ConnectionNotice'; import { GestureHandlerRootView } from 'react-native-gesture-handler'; import StreamStatus from './components/StreamStatus'; import {Platform} from 'react-native'; import BackButton from './components/Backbutton'; import Timer from './components/Timer'; import styled from 'styled-components/native'; import { ColoredBlurView } from '@/components/Colors.tsx'; import LyricsPreview from './components/LyricsPreview.tsx'; import MediaInformation from './components/MediaInformation'; const Group = styled.View` flex-direction: row; justify-content: space-between; `; export default function Player() { return ( {Platform.OS === 'android' && ()} )} /> ); }