2

我有几个欢迎屏幕应该只出现一次,当应用程序安装后首次启动时,但我不知道如何。

我的应用程序在react-native 0.64.3并且expo 43.0.2

先感谢您

4

1 回答 1

0

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')
  }
}
于 2022-02-17T14:19:26.770 回答