web-dev-qa-db-ja.com

ボーダーの不透明度-React Native

ボーダーを「ビュー」に適用し、ボーダーの不透明度を変更する方法を知りたいです。

<View style={styles.mainContainer}> </View>

mainContainer: {
 borderWidth: 2,
 borderColor: '#ddd',
 ....
 opacity: 2,
 ....
}

上記のスタイルを適用すると機能しません。

2
NSR

Androidでは、ネイティブの標高プロパティが使用されているため、境界線の不透明度を変更できません。ただし、iOSでは、

IOSのみ

=> shadowColor

=> shadowOffset

=> shadowOpacity

=> shadowRadius

影の不透明度を変更するプロパティ。

詳細なドキュメントについては、確認できます https://facebook.github.io/react-native/docs/0.6/view-style-props

0
Vikas chhabra