在安装软件包并为其导入后,我尝试使用渐变按钮作为组件,但是由于在haste模块中找不到expo,它给我一个错误。这是什么意思,以及如何使用这些软件包?
我已尝试解决这些链接问题,但是在这些软件包的要求中我没有找到使用expo的解决方案 https://github.com/thomaswangio/react-native-gradient-buttons
import GradientButton from 'react-native-gradient-buttons';
const Co_GradientButton = () => {
return (
<Body style={{ flexDirection: "row", justifyContent: "center" }}>
{/* <Button style={{ marginTop: 24, marginBottom: 24, borderRadius: 24 }}>
<Icon style={{ paddingLeft: 22 }} size={24} color={'#fff'} name="ios-add" />
<Text style={{ marginRight: 10 }} uppercase={false}>{strings('Beneficiaries.NewPayee')}</Text>
</Button> */}
<GradientButton
style={{ marginVertical: 8 }}
text="Gradient Button #1"
textStyle={{ fontSize: 20 }}
gradientBegin="#874f00"
gradientEnd="#f5ba57"
gradientDirection="diagonal"
height={60}
width={300}
radius={15}
impact
impactStyle='Light'
onPressAction={() => alert('You pressed me!')}
/>
</Body>
)
}
export default Co_GradientButton;