diff --git a/src/components/Colors.tsx b/src/components/Colors.tsx index 3ee6874..2e7b4f6 100644 --- a/src/components/Colors.tsx +++ b/src/components/Colors.tsx @@ -108,8 +108,14 @@ export function ColoredBlurView(props: PropsWithChildren) { : scheme === 'dark' ? 'extraDark' : 'xlight' } /> ) : ( - + ); } \ No newline at end of file diff --git a/src/screens/Music/overlays/NowPlaying/index.tsx b/src/screens/Music/overlays/NowPlaying/index.tsx index a148311..bd895a9 100644 --- a/src/screens/Music/overlays/NowPlaying/index.tsx +++ b/src/screens/Music/overlays/NowPlaying/index.tsx @@ -1,5 +1,5 @@ import React, { useCallback, useEffect, useRef } from 'react'; -import { ActivityIndicator, Animated, Dimensions, Easing, Pressable, View } from 'react-native'; +import { ActivityIndicator, Animated, Dimensions, Easing, Platform, Pressable, View } from 'react-native'; import FastImage from 'react-native-fast-image'; import styled, { css } from 'styled-components/native'; @@ -144,11 +144,14 @@ function NowPlaying() { return ( - - - - - + {/** TODO: Fix shadow overflow on Android */} + {Platform.OS === 'ios' ? ( + + + + + + ) : null}