gpt4 book ai didi

css - 如何在 React Native 中添加阴影 div 的内边框半径

转载 作者:行者123 更新时间:2023-12-05 01:50:28 32 4
gpt4 key购买 nike

我如何将内部边框半径应用于我的元素,如下所示,边框半径将其应用于外部阴影

enter image description here

我的样子:

代码:

        const getCheckListData = (): React.ReactNode => {
return checkListJSON.map(
(checklist: CheckListInterface, index: number): React.ReactNode => {
return (
<View style={[styles.checkListTile, styles.checkListTileGreen]} key={index}>
<Text style={styles.checkListTileText}>{checklist.value}</Text>
</View>
);
},
);
};



checkListTileGreen: {
shadowColor: ThemeConfigs.defaultColors.primaryLightColor,
shadowOpacity: ThemeConfigs.defaultCard.shadowOpacity,
},
checkListTile: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
flexShrink: 1,
width: wp('28%'),
height: hp('15%'),
marginTop: hp('1.5%'),
marginRight: wp('1.5%'),
color: ThemeConfigs.defaultColors.textSecondaryColor,
shadowOffset: {
width: 1,
height: 0,
},
elevation: 10,
borderRadius: hp('2%'),
},

enter image description here

最佳答案

尝试以下操作:

  1. 将您的 border-radius: 2% 增加到一个更高的值。让我们说 border-radius: 50%
  2. overflow: hidden; 添加到您的 checkListTileGreen

关于css - 如何在 React Native 中添加阴影 div 的内边框半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73064328/

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