1import StatusBar from '@/components/base/statusBar'; 2import rpx from '@/utils/rpx'; 3import React from 'react'; 4import {StyleSheet, View} from 'react-native'; 5import {SafeAreaView} from 'react-native-safe-area-context'; 6import Background from './components/background'; 7import Bottom from './components/bottom'; 8import Content from './components/content'; 9import NavBar from './components/navBar'; 10 11export default function MusicDetail() { 12 return ( 13 <> 14 <Background /> 15 <SafeAreaView style={style.wrapper}> 16 <StatusBar backgroundColor={'transparent'} /> 17 <View style={style.container}> 18 <NavBar /> 19 <Content /> 20 <Bottom /> 21 </View> 22 </SafeAreaView> 23 </> 24 ); 25} 26 27const style = StyleSheet.create({ 28 wrapper: { 29 width: rpx(750), 30 flex: 1, 31 }, 32 container: { 33 flex: 1, 34 }, 35}); 36