import React from 'react'; import {StyleSheet, Text, View} from 'react-native'; import rpx from '@/utils/rpx'; import {IconButton} from 'react-native-paper'; import MusicQueue from '@/core/musicQueue'; import {useNavigation} from '@react-navigation/native'; import Tag from '@/components/base/tag'; import {fontSizeConst, fontWeightConst} from '@/constants/uiConst'; import Share from 'react-native-share'; import {B64Asset} from '@/constants/assetsConst'; export default function NavBar() { const navigation = useNavigation(); const musicItem = MusicQueue.useCurrentMusicItem(); // const {showShare} = useShare(); return ( { navigation.goBack(); }} /> {musicItem?.title ?? '无音乐'} {musicItem?.artist} {musicItem?.platform ? ( ) : null} { try { await Share.open({ type: 'image/jpeg', title: 'MusicFree-一个插件化的免费音乐播放器', message: 'MusicFree-一个插件化的免费音乐播放器', url: B64Asset.share, subject: 'MusicFree分享', }); } catch {} }} /> ); } const style = StyleSheet.create({ wrapper: { width: rpx(750), height: rpx(150), flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', }, headerContent: { flex: 1, height: rpx(150), justifyContent: 'center', alignItems: 'center', maxWidth: rpx(640), }, headerTitleText: { color: 'white', fontWeight: fontWeightConst.semibold, fontSize: fontSizeConst.title, marginBottom: rpx(12), includeFontPadding: false, }, headerDesc: { height: rpx(32), flexDirection: 'row', alignItems: 'center', }, headerArtistText: { color: 'white', fontSize: fontSizeConst.subTitle, includeFontPadding: false, maxWidth: rpx(540), }, });