blob: cca64f6bf38e63bf7c87eee89079bd6b3be733c0 (
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
|
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';
export const AppView: React.FC = React.memo(() => {
const {refreshApps} = useInstalledApps();
const [screenIndex, setScreenIndex] = useState(0);
useEffect(() => {
refreshApps();
}, [screenIndex, refreshApps]);
return (
<Swiper
horizontal
autoplay={false}
loop={false}
dot={<></>}
activeDot={<></>}
onIndexChanged={setScreenIndex}>
<Home active={screenIndex === 0} />
<AppList active={screenIndex === 1} />
</Swiper>
);
});
|