gpt4 book ai didi

javascript - 在 native react 中绘制垂直虚线

转载 作者:行者123 更新时间:2023-11-28 15:55:56 45 4
gpt4 key购买 nike

See image

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

最佳答案

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

关于javascript - 在 native react 中绘制垂直虚线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58728872/

45 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com