diff --git a/src/screens/PlayDetail/Landscape/PlayBar/Progress.js b/src/screens/PlayDetail/Landscape/PlayBar/Progress.js index 87072b7..a2abad9 100644 --- a/src/screens/PlayDetail/Landscape/PlayBar/Progress.js +++ b/src/screens/PlayDetail/Landscape/PlayBar/Progress.js @@ -52,8 +52,8 @@ const Progress = ({ progress, bufferedProgress, duration }) => { const { width } = getWindowSise() const progressContentPadding = width * 0.0140625 -const progressHeight = width * 0.0046875 -const progressDotSize = progressHeight * 4 +const progressHeight = width * 0.005 +const progressDotSize = progressHeight * 3.8 const styles = StyleSheet.create({ progress: { width: '100%', diff --git a/src/screens/PlayDetail/Landscape/PlayBar/index.js b/src/screens/PlayDetail/Landscape/PlayBar/index.js index 3345a77..44dd668 100644 --- a/src/screens/PlayDetail/Landscape/PlayBar/index.js +++ b/src/screens/PlayDetail/Landscape/PlayBar/index.js @@ -20,7 +20,7 @@ const PlayTimeMax = memo(({ timeStr, size }) => { export default () => { const { curTimeStr, maxTimeStr, progress, bufferedProgress, duration } = usePlayTime() const { window } = useDimensions() - const size = useMemo(() => window.width * 0.4 * 0.4 * 0.14, [window.width]) + const size = useMemo(() => window.width * 0.4 * 0.4 * 0.125, [window.width]) return (