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