2017-09-20 34 views
0

空白showInAppNotificationをthis.props.navigator.showInAppNotification反応するネイティブ・ナビゲーション

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

画面InAppNotificationが登録さが、空白のコンテンツとの通知が表示され、使用を試みる: enter image description here

誰を支援することができますこの?

example.InAppNotification:

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

の内容が何であるかをInAppNotification画面を登録する必要があります。 example.InAppNotification –

+0

質問に追加してください。 –

答えて

2

試しコンテナView

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

flex:1を追加することでも、あなたは正しく

+0

何も変更されていません。また、私はdevのツールでconsole.logが表示されません。 –

+0

InAppNotification画面に登録しましたか? –

+0

はい、エラーがあります。確認してください。 –

関連する問題