Partitionvisual (#122)

* first tries with transition entry from native base

* setup moti for mobile and web use

* added Easing linear for consistant scroll scpeed

* pause works !

* added startAt, rewind and fast forward

* created temporary view for partition viewer

* Cleanup for PR

* fix little bug in rewind
This commit is contained in:
Clément Le Bihan
2023-01-25 16:44:00 +09:00
committed by GitHub
parent e971073ac4
commit 2f5c9481aa
12 changed files with 2099 additions and 90 deletions
+2
View File
@@ -7,6 +7,7 @@ import SongLobbyView from './views/SongLobbyView';
import AuthenticationView from './views/AuthenticationView';
import HomeView from './views/HomeView';
import SearchView from './views/SearchView';
import PartitionView from './views/PartitionView';
import SetttingsNavigator from './views/SettingsView';
import { useQuery } from 'react-query';
import API from './API';
@@ -20,6 +21,7 @@ export const protectedRoutes = <>
<Stack.Screen name="Song" component={SongLobbyView} options={{ title: translate('play') }} />
<Stack.Screen name="Search" component={SearchView} options={{ title: translate('search') }} />
<Stack.Screen name="User" component={ProfileView} options={{ title: translate('user') }} />
<Stack.Screen name="Partition" component={PartitionView} options={{ title: translate('partition') }} />
</>;
export const publicRoutes = <React.Fragment>