2017-06-21 26 views
2

反応ネイティブのアラートボックスの背景色、フォントサイズを変更するにはどうすればよいですか?私は、ボタンをクリックした後、私の警告を入れた。私はあなたがこのライブラリReact-Native_DropDown-Alertを使用することができ、この1のスタイルをどのように助け反応ネイティブのアラートの色を変更する方法

Alert.alert(
    'Plate', 
    'Plate has been sent for printing!', 
    [ 
    {text: 'OK', onPress:() => console.log('OK Pressed')}, 
    ], 
    { cancelable: false } 
) 
+2

[反応したネイティブのカスタムアラートダイアログ](https://stackoverflow.com/questions/37535263/custom-alert-dialog-in-react-native)の可能な複製 –

答えて

-1

てくれてありがとうを知りません。 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 
} 
// ... 
関連する問題