gitextract_jvtnjuuu/ ├── .gitignore ├── README.md ├── app/ │ ├── (tabs)/ │ │ ├── _layout.tsx │ │ ├── index.tsx │ │ ├── library.tsx │ │ ├── new.tsx │ │ ├── radio.tsx │ │ └── search/ │ │ ├── _layout.tsx │ │ └── index.tsx │ ├── +html.tsx │ ├── +not-found.tsx │ ├── _layout.tsx │ └── music/ │ └── [id].tsx ├── app.json ├── babel.config.js ├── components/ │ ├── BottomSheet/ │ │ ├── ExpandedPlayer.tsx │ │ └── MiniPlayer.tsx │ ├── CategoryCard.tsx │ ├── MusicVisualizer.tsx │ ├── Overlay/ │ │ ├── OverlayContext.tsx │ │ └── OverlayProvider.tsx │ ├── ParallaxScrollView.tsx │ ├── ThemedText.tsx │ ├── ThemedView.tsx │ └── navigation/ │ └── TabBarIcon.tsx ├── constants/ │ └── Colors.ts ├── contexts/ │ ├── AudioContext.tsx │ └── RootScaleContext.tsx ├── data/ │ └── songs.json ├── hooks/ │ ├── useColorScheme.ts │ ├── useColorScheme.web.ts │ ├── useOverlayView.ts │ └── useThemeColor.ts ├── package.json ├── scripts/ │ └── reset-project.js └── tsconfig.json