forked from uwemneku/Banking-App-Clone-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
35 lines (31 loc) · 968 Bytes
/
App.js
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
/* eslint-disable prettier/prettier */
import React, {useEffect} from 'react';
import {View, Text, StyleSheet} from 'react-native';
import {NavigationContainer} from '@react-navigation/native';
import MainStackNavigation from './Navigation'
import { Provider } from 'react-redux';
import AlertBox from './components/AlertBox';
import Animated, { useAnimatedStyle, useSharedValue, withDecay, withTiming } from 'react-native-reanimated';
export default function App() {
const opacity = useSharedValue(0);
const fadeinStyle = useAnimatedStyle(()=>({
opacity: withTiming(opacity.value, {duration: 500}),
}))
useEffect(() => {
opacity.value = 1;
}, [])
return (
<NavigationContainer>
<Animated.View style={[styles.container, fadeinStyle]} >
<MainStackNavigation />
<AlertBox />
</Animated.View>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
container:{
height:'100%',
flex:1,
},
})