0

this.props.navigator.showInAppNotification を使用しようとしています

this.props.navigator.showInAppNotification({
  screen: "example.InAppNotification", 
  passProps: {
    title: 'Title',
    body: 'Body...'
  }, 
  position: 'bottom',
  autoDismissTimerSec: 3
});

画面InAppNotificationが登録されていますが、内容が空白の通知が表示されます: ここに画像の説明を入力

誰でもこれを手伝ってもらえますか?

example.InAppNotification:

export default class InAppNotification extends Component {
  render() {
    console.log(this.props);
    return (
      <View>
        <Text>
          {JSON.stringify(this.props)}
        </Text>
      </View>
    );
  }
}
4

1 に答える 1