xref: /MusicFree/src/pages/musicDetail/components/bottom/index.tsx (revision b882a19d884fffa32f7c8cef31652b909dceaa0f)
1import React from 'react';
2import {StyleSheet, View} from 'react-native';
3import rpx from '@/utils/rpx';
4import SeekBar from './seekBar';
5import PlayControl from './playControl';
6import Opertions from './operations';
7
8export default function Bottom() {
9    return (
10        <View style={style.wrapper}>
11            <Opertions />
12            <SeekBar />
13            <PlayControl />
14        </View>
15    );
16}
17
18const style = StyleSheet.create({
19    wrapper: {
20        width: rpx(750),
21        height: rpx(320),
22    },
23});
24