gpt4 book ai didi

reactjs - 如何在 React Native 中实现 Font Awesome 堆栈图标功能

转载 作者:行者123 更新时间:2023-12-03 20:27:40 25 4
gpt4 key购买 nike

使用 React Native 实现堆叠/重叠图标。

我正在尝试在 react native 中实现这样的目标:
https://fontawesome.com/how-to-use/on-the-web/styling/stacking-icons

如何实现这一目标?

最佳答案

你可以通过这样做来实现这一点。使用宽度和高度可以帮助您将 View 保持在适当的位置并将所有内容对齐到中心,使其看起来像堆叠的图标一样漂亮。 enter image description here

<View style={{
position:"relative",
justifyContent:'center',
alignItems:"center",
width:40,
height:40
}}>
<Icon name="circle" size={34} color={"black"} />
<Icon name="flag" size={20} color={"white"} style={{position: 'absolute', zIndex: 99}} />
</View>

https://snack.expo.io/HkxWerHBr

关于reactjs - 如何在 React Native 中实现 Font Awesome 堆栈图标功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57701466/

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