aboutsummaryrefslogtreecommitdiff
path: root/src/View.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/View.tsx')
-rw-r--r--src/View.tsx30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/View.tsx b/src/View.tsx
deleted file mode 100644
index 110e3fe..0000000
--- a/src/View.tsx
+++ /dev/null
@@ -1,30 +0,0 @@
-import React, {useEffect, useState} from 'react';
-import Swiper from 'react-native-swiper';
-import {AppList} from './screens/AppList';
-import {Home} from './screens/Home';
-import {useInstalledApps} from './hooks/useInstalledApps';
-import {useFavorites} from './hooks/useFavorites';
-
-export const View: React.FC = React.memo(() => {
- const {refreshApps} = useInstalledApps();
- const {refreshFavorites} = useFavorites();
- const [screenIndex, setScreenIndex] = useState(0);
-
- useEffect(() => {
- refreshApps();
- refreshFavorites();
- }, [screenIndex, refreshApps, refreshFavorites]);
-
- return (
- <Swiper
- horizontal
- autoplay={false}
- loop={false}
- dot={<></>}
- activeDot={<></>}
- onIndexChanged={setScreenIndex}>
- <Home active={screenIndex === 0} />
- <AppList active={screenIndex === 1} />
- </Swiper>
- );
-});