aboutsummaryrefslogtreecommitdiff
path: root/App.tsx
blob: 2294656374780bef40cc229570a3cb90d12afa71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React, {useState} from 'react';
import {SafeAreaView} from 'react-native';
import {InstalledApps} from 'react-native-launcher-kit';
import Swiper from 'react-native-swiper';
import {AppList} from './src/screens/AppList';
import {Home} from './src/screens/Home';
import {GestureHandlerRootView} from 'react-native-gesture-handler';

const App: React.FC = () => {
  const [apps, _setApps] = useState(() => InstalledApps.getSortedApps());
  const [screenIndex, setScreenIndex] = useState(0);

  // const refreshApps = () => setApps(InstalledApps.getSortedApps());

  // useEffect(() => {
  //   refreshApps();
  // }, [screenIndex]);

  return (
    <GestureHandlerRootView>
      <SafeAreaView className="flex flex-1 bg-slate-100 dark:bg-black">
        <Swiper
          horizontal
          autoplay={false}
          loop={false}
          dot={<></>}
          activeDot={<></>}
          onIndexChanged={setScreenIndex}>
          <Home apps={apps} />
          <AppList apps={apps} isActive={screenIndex === 1} />
        </Swiper>
      </SafeAreaView>
    </GestureHandlerRootView>
  );
};

export default App;