在切换器周围添加轮廓
我使用以下组件包 https://www.npmjs.com/package/react-开关选择器 为了让它看起来像这样
到目前为止,我已经完成了以下操作,但仍然缺少边框。如何在切换
<SwitchSelector
onChange={onChange}
options={[
{ label: 'Milestone', value: 'Milestone' },
{ label: 'Activity', value: 'Activity' },
]}
initialSelectedIndex={0}
fontColor={'#767676'}
backgroundColor={'#FFFFFF'}
wrapperBorderRadius={30}
selectedFontColor={'#526FD6'}
selectedBackgroundColor={'#EEF1FB'}
optionBorderRadius={30}
/>
我的结果
I using the following component package https://www.npmjs.com/package/react-switch-selector
To make it look like such
So far I have done the below but still missing border. How can I add the border outline and that the transition of outline matches the highlight when switching
<SwitchSelector
onChange={onChange}
options={[
{ label: 'Milestone', value: 'Milestone' },
{ label: 'Activity', value: 'Activity' },
]}
initialSelectedIndex={0}
fontColor={'#767676'}
backgroundColor={'#FFFFFF'}
wrapperBorderRadius={30}
selectedFontColor={'#526FD6'}
selectedBackgroundColor={'#EEF1FB'}
optionBorderRadius={30}
/>
My outcome
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道这是否是正确的方法,但我结束了,但除了 @amir-naeem 的解决方案之外,还添加了以下内容,
因此直接在 prop 中传递 CSS
I don't know if it's the right way but what I ended but doing in addition to @amir-naeem 's solution was add the below
so passing CSS directly in prop
我添加了
border
和selectionIndicatorMargin
属性,它应该可以解决您的问题。I have added
border
andselectionIndicatorMargin
Props it should fix your issue.