xref: /MusicFree/src/pages/downloading/index.tsx (revision b882a19d884fffa32f7c8cef31652b909dceaa0f)
1import React from 'react';
2import {StyleSheet} from 'react-native';
3import rpx from '@/utils/rpx';
4import {SafeAreaView} from 'react-native-safe-area-context';
5import SimpleAppBar from '@/components/base/simpleAppBar';
6import StatusBar from '@/components/base/statusBar';
7import DownloadingList from './downloadingList';
8import MusicBar from '@/components/musicBar';
9
10export default function Downloading() {
11    return (
12        <SafeAreaView style={style.wrapper}>
13            <StatusBar />
14            <SimpleAppBar title="正在下载" />
15            <DownloadingList />
16            <MusicBar />
17        </SafeAreaView>
18    );
19}
20
21const style = StyleSheet.create({
22    wrapper: {
23        width: rpx(750),
24        flex: 1,
25    },
26});
27