我有重新加载应用程序的问题,
react-native-cli:1.2.0 react-native:0.37.0 守望者:4.7.0
index.ios.js 文件。
import React from 'react';
import ReactNative, {View,Text} from 'react-native';
import Header from './src/components/header';
const App = () => {
return (
<View>
<Header headerText={'Products '}/>
<Text>Test</Text>
</View>
);
};
ReactNative.AppRegistry.registerComponent('ditrack', ()=> App);
然后运行命令 react-native run-ios。已加载应用程序模拟器,但不更新 ex 代码中的任何更改。
<Text>Test</Text> to <Text> OTHER Test</Text>
我已经在 stackoverflow 和 github 中查看了几个问题,但对我没有帮助