下面是我的代码:
const Success =({navigation})=>{
useEffect(() => {
setTimeout(()=>{
<View>
<Image source={images.done}
style={{
width:100,
height:100
}}
/>
</View>
navigation.navigate('Home')
},4000)
}, [])
return(
<View style={{
flex:1,
justifyContent:'center',
alignItems:'center',
}}>
<LottieView
style={{
width: 100,
height: 60,
}}
source={images.progress}
autoPlay
/>
</View>
)
}
export default Success ;
请帮助我如何首先显示Lotti进度,然后立即我想完成的图像出现在Lotti进度完成后消失。所以我会知道如何设置时间为Lotti进度,然后设置时间显示图像完成,然后导航到下一页
1条答案
按热度按时间qni6mghb1#
你可以使用lottie-react-native库中的
onAnimationFinish
prop 。告诉程序当lottie-react-native动画结束时你要做什么。