rn中所需要用到的第三方依赖
Posted jingguorui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rn中所需要用到的第三方依赖相关的知识,希望对你有一定的参考价值。
一、阴影
yarn add react-native-shadow
yarn add react-native-svg
react-native link react-native-svg
import BoxShadow from ‘react-native-shadow‘
render()
const shadowOpt =
width:315, //包裹的子内容多宽这里必须多宽
height:44,//同上
color:"#000",//阴影颜色
border:4,//阴影宽度
radius:22,//包裹的子元素圆角多少这里必须是多少
opacity:0.1,//透明度
x:0,
y:0,
style:marginVertical:5
<BoxShadow setting=shadowOpt>
<View style=[styles.userInput, styles.userName]>
<Text></Text>
</View>
原文链接:https://blog.csdn.net/qq_34645412/article/details/82689191
以上是关于rn中所需要用到的第三方依赖的主要内容,如果未能解决你的问题,请参考以下文章