2017-06-19 15 views
0

どのように色を変更し、反応ネイティブでアラートボックスのテキストを中央に配置しますか?反応ネイティブでアラートのスタイルを設定するには

ここに私のコードです。

Alert.alert(
    'Edit Profile', 
    'User Save Succesful!', 
    [ 
    {text: 'OK', onPress:() => console.log('OK Pressed')}, 
    ], 
    { cancelable: false } 
) 
+4

可能な重複〔Iが反応し、ネイティブでのアラートの要素のスタイルを設定する方法は?](https://stackoverflow.com/questions/41665902/how-do-i-style-an-alert-element-反応中ネイティブ) –

答えて

0

このライブラリ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 
} 
// ... 
関連する問題