我有几个欢迎屏幕应该只出现一次,当应用程序安装后首次启动时,但我不知道如何。
我的应用程序在react-native 0.64.3
并且expo 43.0.2
先感谢您
我有几个欢迎屏幕应该只出现一次,当应用程序安装后首次启动时,但我不知道如何。
我的应用程序在react-native 0.64.3
并且expo 43.0.2
先感谢您
AsyncStorage
将为您完成这项工作,您可以将其与componentDidMount
async componentDidMount() {
const firstTime = await AsyncStorage.getItem("isFirstTime")
if(firstTime != null) {
// navigate to HomePage directly
} else {
// navigate to other screens where you have some infos to show
await AsyncStorage.setItem("isFirstTime", 'true')
}
}