* Lyrics implementation prototype * feat: update lyrics view * chore: add docs * chore: cleanup * feat: animate active text * fix: hide lyrics button when there are none * feat: create lyrics preview in now playing modal * fix: header overlay color Closes #224 Closes #151 Closes #100 --------- Co-authored-by: Lei Nelissen <lei@codified.nl>
43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
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';
|
|
|
|
const Group = styled.View`
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
export default function Player() {
|
|
return (
|
|
<GestureHandlerRootView style={{ flex: 1 }}>
|
|
<ColoredBlurView>
|
|
{Platform.OS === 'android' && (<BackButton />)}
|
|
<Queue header={(
|
|
<>
|
|
<NowPlaying />
|
|
<ConnectionNotice />
|
|
<StreamStatus />
|
|
<ProgressBar />
|
|
<MediaControls />
|
|
<Group>
|
|
<Timer />
|
|
</Group>
|
|
<LyricsPreview />
|
|
</>
|
|
)} />
|
|
</ColoredBlurView>
|
|
</GestureHandlerRootView>
|
|
);
|
|
}
|