[Purge profile view]: Remove skills filters and add filter by music

This commit is contained in:
mathysPaul
2023-10-15 21:09:56 +02:00
parent ddd29f5530
commit 6a8ca7d0fa
3 changed files with 887 additions and 921 deletions
+1 -11
View File
@@ -9,18 +9,8 @@ const LoadingComponent = () => {
};
const LoadingView = () => {
const colorScheme = useColorScheme();
const bgColor = useMemo(() => {
switch (colorScheme) {
case 'light':
return DefaultTheme.colors.background;
case 'dark':
return DarkTheme.colors.background;
}
}, [colorScheme]);
return (
<Center style={{ flexGrow: 1, backgroundColor: bgColor }}>
<Center flex={1}>
<LoadingComponent />
</Center>
);