gpt4 book ai didi

javascript - 仅在 Expo react native 中将渐变应用于文本

转载 作者:行者123 更新时间:2023-12-05 04:58:02 25 4
gpt4 key购买 nike

很奇怪,我在网络上找不到一个非常简单的功能的解决方案。我想在 expo react native 项目中为文本添加渐变。看起来像这样

enter image description here

我确实看到了一个库(react-native-text-gradient),它自 0.5x 版本以来就没有更新过。 expo 的线性渐变创建一个按钮并对其应用渐变。任何解决方案将不胜感激。

最佳答案

使用Masked View

<MaskedView
style={{ height: 24 }}
maskElement={<Text style={s.text}>{children}</Text>}
>
<LinearGradient
colors={['cadetblue', '#fabada']}
start={{ x: 1, y: 1 }}
end={{ x: 0, y: 0.33 }}
style={{ flex: 1 }}
/>
</MaskedView>

关于javascript - 仅在 Expo react native 中将渐变应用于文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64138735/

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