0
私は自分のナビゲーションにreact-native-router-fluxを使用します。 Actions.refresh()に問題があります。私はそれを実行すると何も起こりません...アクション.refresh navigation
import React, { Component } from 'react';
import {
View,
Text,
Button,
} from 'react-native';
export default class Picture extends Component {
constructor(props) {
super(props);
console.log("Constructor picture")
}
componentWillMount() {
console.log('Will mount picture')
}
componentWillUpdate() {
console.log("Will Update picture")
}
componentWillUnmount() {
console.log("will Unmont picture")
}
render() {
console.log("render Picture")
return (
<Button title='refresh' onPress={() => Actions.refresh()}/>
)
}
}
誰かがそれをどのように使うのか知っていますか?