首页 > 解决方案 > 在本机反应中绘制垂直虚线

问题描述

看图片

谁能建议如何在 React Native 中的图标之间做这些垂直虚线?

标签: javascriptcssreactjsreact-nativelayout

解决方案


首先,如果您想要更多样式,可以搜索第三个库。我找到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/>


推荐阅读