答案 0 :(得分:4)
首先,如果需要更多样式,可以搜索第三个库。我找到了react-native-dash
库。您可以像下面这样使用:
<Dash dashGap={3} style={{width:1, height:100, flexDirection:'column',}}/>
然后,如果您想自己定义一个组件,则可以使用样式并将其放入 纯成分
export const DotLine = (props) => {
return({
<View style={{
borderStyle: 'dotted',
height:200,
borderLeftWidth:5
}}/>
})
}
//then use it in other components
<Icon/><DotLine/><Icon/>