反应本机梯度按钮



我的BTN组件有问题,我正在使用React-intive-lination-Linarear-gradient lib ...

btn.js

import React,{ Component } from 'react';
import {View,Text,StyleSheet, TouchableOpacity} from 'react-native';
import {Button,Item} from 'native-base';
import LinearGradient from 'react-native-linear-gradient';
class GradientBtn extends Component {
    constructor(props){
        super(props);
    }
    render(){
    return(     
        <LinearGradient colors={['#d7d7d7', '#fafafa', '#e8e8e8']} 
        style={[styles.btnContainer,{height:this.props.h,width:this.props.w}]}>
            <Text style={styles.btn}>{this.props.name}</Text>
        </LinearGradient>


    );
  }
}
var styles = StyleSheet.create({
    btnContainer:{
        backgroundColor:'#f0f0f0',
        justifyContent:'center',
        marginLeft:1
    },
    btn:{
        textAlign:'center',
        color:'#000',
        fontWeight:'700',
        fontSize:12
    }
});
export default GradientBtn;

app.js

<View style={{flexDirection:'row',justifyContent:'space-between',marginTop:5}}>
    <TouchableOpacity>
        <GradientBtn h={35} w={'24.55%'} name="Open Corrective"/>
    </TouchableOpacity>
    <TouchableOpacity>
        <GradientBtn h={35} w={'24.55%'} name="Open Corrective"/>
    </TouchableOpacity>
    <TouchableOpacity>
        <GradientBtn h={35} w={'24.55%'} name="Open Corrective"/>
    </TouchableOpacity>
    <TouchableOpacity>
        <GradientBtn h={35} w={'24.55%'} name="Open Corrective"/>
    </TouchableOpacity>
</View>

当我从组件中删除touchableOpational标签时,视图将可以,但是当我放置该标签时,我想在该BTN上触摸不透明度,然后我的视图将压缩宽度,并且没有看到合适的BTN。

使用https://www.npmjs.com/package/reaect-native-native-linear-gradient

<LinearGradient colors={['#FF00FF', '#FFF000', '#FF0000']}
    style={{borderRadius: 20, width: width/3}} 
    start={{ y: 0.0, x: 0.0 }} end={{ y: 0.0, x: 1.0 }}>
    <Button style={{borderRadius: 20, width: width/3, 
        textAlign: 'center', color: '#fff'}} title={`Welcome`}/>
</LinearGradient>

<LinearGradient colors={['#4c669f', '#3b5998', '#192f6a']} 
    style={styles.linearGradient} 
    start={{ y: 0.0, x: 0.0 }} end={{ y: 0.0, x: 1.0 }}>
        <Text style={styles.buttonText}> Done </Text>
 </LinearGradient>
const styles = StyleSheet.create({
  linearGradient: {
    flex: 1,
    paddingLeft: 15
    paddingRight: 15,
    borderRadius: 5
  },
  buttonText: {
    fontSize: 18,
    fontFamily: 'Gill Sans',
    textAlign: 'center',
    margin: 10,
    color: '#ffffff',
    backgroundColor: 'transparent',
  },
});

尝试这个 -

const GradientBtn = ({ name }) => (
   <LinearGradient colors={['#d7d7d7', '#fafafa', '#e8e8e8']} style={styles.gradient}>
      <Text style={styles.btn}>{name}</Text>
   </LinearGradient>
)
const styles = StyleSheet.create({
  gradient: {
    flex: 1
  }
});

&amp;应用width&amp;heightTouchableOpacity本身

<TouchableOpacity style={styles.wrapper}>
  <GradientBtn name="Login" />
</TouchableOpacity>
const styles = StyleSheet.create({
  wrapper: {
    width: '24.55%', 
    height: 35
  }
});

虽然没有尝试,但我想它会起作用:)

在此答案上迟到,但看起来您根本不使用flex: 1上的CC_4。或者您可以将高度和宽度放在TouchableOpacity上。

这是一个渐变按钮组件库,它使在React Antiath中使用梯度按钮易于使用。

相关内容

  • 没有找到相关文章

最新更新