0
通知がある場合、私はバッジを表示したいと思うsimple footerTabを持っています。このコードではコンポーネントにプロパティを渡す
<Button active={ this.props.ui.selectedTab === 'notifications' ? true : false }
onPress={() => this.selectedTab('notifications') }
{ ...this.props.ui.notifications ? badge : null }
>
{ this.props.ui.notifications ?
<Badge><Text style={{ color:'white' }}>{this.props.ui.notifications}</Text></Badge> : null
}
<Icon name='md-notifications' />
</Button>
私はボタンのためにそのバッジのプロパティを渡すことができますどのように「バッジが定義されていない」
を取得していますか?
「バッジ」はどこに定義されていますか? – Li357
Hmm。良い質問。私はコンポーネントのプロパティだと思っていたので、どこにも定義していません。そのプロパティを文字列としてコンポーネントに渡す必要がありますか? – CodAri
バッジコンポーネント用のライブラリを使用していますか?または、自分でバッジコンポーネントを作成しましたか? –