当用户单击注销按钮,然后应用程序重新启动时,我尝试通过单击按钮来重新启动应用程序
答案 0 :(得分:1)
您可以使用此库react-native-restart
。但是在注销时重新启动应用程序是非常荒唐的行为,而是您可以签出 react-navigation 的 switch导航器。 Checkout this link.
答案 1 :(得分:0)
您可以使用此库react-native-restart
用法示例:
import RNRestart from 'react-native-restart';
RNRestart.Restart();
答案 2 :(得分:0)
安装库
使用React Native版本低于0.40吗?使用版本1.0.1。否则,请使用0.0.2。版本。
RN <0.40
npm install react-native-restart@0.0.1 --save
RN> = 0.40
npm install react-native-restart --save
用法
import RNRestart from 'react-native-restart'; // Import package from node modules
// Immediately reload the React Native Bundle
RNRestart.Restart();
Restart();
答案 3 :(得分:0)
您可以使用NativeModules。
import { NativeModules } from "react-native";
NativeModules.DevSettings.reload();