blob: a0eda255cfbb3fd642ffbf0720ebbe93ae4aaed2 (
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
|
import React, {useState} from 'react';
import {SafeAreaView, Text, View} from 'react-native';
import {InstalledApps} from 'react-native-launcher-kit';
import Swiper from 'react-native-swiper';
import {AppList} from './src/screens/AppList';
function App(): React.JSX.Element {
const [apps, _setApps] = useState(() => InstalledApps.getSortedApps());
return (
<SafeAreaView className="flex flex-1 bg-slate-100 dark:bg-black">
<Swiper
autoplay={false}
horizontal
loop={false}
loadMinimal
dot={<></>}
activeDot={<></>}>
<View>
<Text>Wow</Text>
</View>
<AppList apps={apps} />
</Swiper>
</SafeAreaView>
);
}
export default App;
|