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