1import {State} from 'react-native-track-player'; 2 3/** 4 * 音乐是否处于停止状态 5 * @param state 6 * @returns 7 */ 8export const musicIsPaused = (state: State | undefined) => 9 state !== State.Playing; 10 11/** 12 * 音乐是否处于缓冲中状态 13 * @param state 14 * @returns 15 */ 16export const musicIsBuffering = (state: State | undefined) => 17 state === State.Loading || state === State.Buffering; 18