admin管理员组文章数量:1344330
I have a problem with my btn ponent, I am using react-native-linear-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>
when I remove TouchableOpacity tag from ponent then the view will ok, but I want touch opacity on that btn when I placed this tag then my view will press means out the width and didn't see proper btn..
I have a problem with my btn ponent, I am using react-native-linear-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>
when I remove TouchableOpacity tag from ponent then the view will ok, but I want touch opacity on that btn when I placed this tag then my view will press means out the width and didn't see proper btn..
Share Improve this question edited Oct 7, 2018 at 19:24 Omid Nikrah 2,4803 gold badges16 silver badges31 bronze badges asked Nov 23, 2017 at 20:46 Ishaq AshrafIshaq Ashraf 1692 gold badges3 silver badges10 bronze badges 1-
you might want to try using
flex: 1
onTouchableOpacity
also, for reference, here's my ponent library for this: github./thomaswangio/react-native-gradient-buttons – thomas Commented Oct 7, 2018 at 17:14
2 Answers
Reset to default 3Use https://www.npmjs./package/react-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={`Wele`}/>
</LinearGradient>
or
<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',
},
});
Try this -
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
}
});
& apply width
& height
to the TouchableOpacity
itself
<TouchableOpacity style={styles.wrapper}>
<GradientBtn name="Login" />
</TouchableOpacity>
const styles = StyleSheet.create({
wrapper: {
width: '24.55%',
height: 35
}
});
Didn't try it though but I guess it will work :)
本文标签: javascriptreact native gradient buttonStack Overflow
版权声明:本文标题:javascript - react native gradient button - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795696a2540386.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论