1bf6e62f2S猫头猫import React from 'react'; 2*4060c00aS猫头猫import {StyleSheet, View} from 'react-native'; 3bf6e62f2S猫头猫import rpx from '@/utils/rpx'; 4bf6e62f2S猫头猫import SeekBar from './seekBar'; 5bf6e62f2S猫头猫import PlayControl from './playControl'; 6bf6e62f2S猫头猫import Opertions from './operations'; 7bf6e62f2S猫头猫 8*4060c00aS猫头猫export default function Bottom() { 9bf6e62f2S猫头猫 return ( 10bf6e62f2S猫头猫 <View style={style.wrapper}> 11*4060c00aS猫头猫 <Opertions /> 12*4060c00aS猫头猫 <SeekBar /> 13*4060c00aS猫头猫 <PlayControl /> 14bf6e62f2S猫头猫 </View> 15bf6e62f2S猫头猫 ); 16bf6e62f2S猫头猫} 17bf6e62f2S猫头猫 18bf6e62f2S猫头猫const style = StyleSheet.create({ 19bf6e62f2S猫头猫 wrapper: { 20bf6e62f2S猫头猫 width: rpx(750), 21bf6e62f2S猫头猫 height: rpx(320), 22bf6e62f2S猫头猫 }, 23bf6e62f2S猫头猫}); 24