Skip to content

Commit

Permalink
Remove media control sample since it is enabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
123mpozzi committed Nov 6, 2024
1 parent e22981e commit a702767
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 99 deletions.
11 changes: 0 additions & 11 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import LandscapeFullscreenHandling from './screens/LandscapeFullscreenHandling';
import SystemUI from './screens/SystemUi';
import OfflinePlayback from './screens/OfflinePlayback';
import Casting from './screens/Casting';
import MediaControls from './screens/MediaControls';
import BackgroundPlayback from './screens/BackgroundPlayback';

export type RootStackParamsList = {
Expand Down Expand Up @@ -60,7 +59,6 @@ export type RootStackParamsList = {
};
Casting: undefined;
SystemUI: undefined;
MediaControls: undefined;
BackgroundPlayback: undefined;
};

Expand Down Expand Up @@ -113,10 +111,6 @@ export default function App() {
title: 'Programmatic Track Selection',
routeName: 'ProgrammaticTrackSelection' as keyof RootStackParamsList,
},
{
title: 'Media Controls',
routeName: 'MediaControls' as keyof RootStackParamsList,
},
{
title: 'Background Playback',
routeName: 'BackgroundPlayback' as keyof RootStackParamsList,
Expand Down Expand Up @@ -274,11 +268,6 @@ export default function App() {
options={{ title: 'Casting' }}
/>
)}
<RootStack.Screen
name="MediaControls"
component={MediaControls}
options={{ title: 'Media Controls' }}
/>
<RootStack.Screen
name="BackgroundPlayback"
component={BackgroundPlayback}
Expand Down
88 changes: 0 additions & 88 deletions example/src/screens/MediaControls.tsx

This file was deleted.

0 comments on commit a702767

Please sign in to comment.