diff --git a/src/screens/Search/index.tsx b/src/screens/Search/index.tsx index 3e4fcf74..c4a468f4 100644 --- a/src/screens/Search/index.tsx +++ b/src/screens/Search/index.tsx @@ -7,6 +7,8 @@ import { StackParams } from 'screens/types'; import Search from './stacks/Search'; import Album from 'screens/Music/stacks/Album'; import { StyleSheet } from 'react-native'; +import NowPlaying from 'screens/Music/overlays/NowPlaying'; +import { GestureHandlerRootView } from 'react-native-gesture-handler'; const Stack = createStackNavigator(); @@ -14,17 +16,20 @@ function SearchStack() { const defaultStyles = useDefaultStyles(); return ( - , - - }}> - - - + + , + + }}> + + + + + ); }