このライブラリReact-Native_DropDown-Alertを使用できます。 Differentnetタイプのアラート用にあらかじめ定義されたスタイルを備えた高度にカスタマイズ可能なライブラリ。 コードはこのようになります。
<View>
// !!! Make sure it's the last component in your document tree.
<DropdownAlert
ref={(ref) => this.dropdown = ref}
onClose={(data) => this.onClose(data)} />
</View>
// ...
handleRequestCallback(err, response) {
if (err != null) {
this.dropdown.alertWithType('error', 'Error', err)
}
}
// ...
onClose(data) {
// data = {type, title, message, action}
// action means how the alert was dismissed. returns: automatic, programmatic, tap, pan or cancel
}
// ...
の
可能な重複〔Iが反応し、ネイティブでのアラートの要素のスタイルを設定する方法は?](https://stackoverflow.com/questions/41665902/how-do-i-style-an-alert-element-反応中ネイティブ) –