这篇文章主要讲解了“react如何实现密码隐藏功能”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“react如何实现密码隐藏功能”吧!
创新互联建站专业为企业提供罗山网站建设、罗山做网站、罗山网站设计、罗山网站制作等企业网站建设、网页设计与制作、罗山企业网站模板建站服务,十多年罗山做网站经验,不只是建网站,更提供有价值的思路和整体网络服务。
react实现密码隐藏功能的方法:1、添加依赖“import {View,Text,TouchableWithoutFeedback,TextInput,Image,StyleSheet,} from 'react-native';”;2、通过“{this.state.imageState ? (...)}”方法实现密码显示与隐藏功能即可。
React Native 密码输入的显示与隐藏 Image点击事件 眼睛 输入框密码
1.效果图
2.添加依赖
import {
View,
Text,
TouchableWithoutFeedback,
TextInput,
Image,
StyleSheet,
} from 'react-native';
3.代码功能实现
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
imageState: false,
};
}
render() {
return (
<View style={{ flex: 1, justifyContent: 'space-around' }}>
<View
style={{ backgroundColor: '#ffffff', height: 50, flexDirection: 'row', justifyContent: 'space-between', marginTop: 1, }}>
<Text style={pageStyle.textStyle}>请输入密码:</Text>
<TextInput
secureTextEntry={!this.state.imageState}//是否隐藏
editable={true}//是否可编辑
style={pageStyle.textInfoStyle}>
test12345test
</TextInput>
<TouchableWithoutFeedback style={{ marginRight: 10 }} onPress={this.onPressChang}>
{this.state.imageState ? (
<Image style={{ width: 21, height: 14, alignSelf: 'center', marginRight: 10, }}
source={require('../ReactDemo1/android/app/src/main/res/mipmap-xhdpi/password_show.png')}
/>) : (<Image style={{ width: 20, height: 8, alignSelf: 'center', marginRight: 10, }}
source={require('../ReactDemo1/android/app/src/main/res/mipmap-xhdpi/password_hide.png')}
/>)}
</TouchableWithoutFeedback>
</View>
</View>
);
}
onPressChang = () => {
this.setState({
imageState: !this.state.imageState,
});
};
}
const pageStyle = StyleSheet.create({
textInfoStyle: {
alignSelf: 'center',
marginLeft: 40,
color: '#343434',
fontSize: 16,
flex: 1,
},
textStyle: {
alignSelf: 'center',
marginLeft: 10,
color: '#343434',
fontSize: 16,
},
});
感谢各位的阅读,以上就是“react如何实现密码隐藏功能”的内容了,经过本文的学习后,相信大家对react如何实现密码隐藏功能这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联,小编将为大家推送更多相关知识点的文章,欢迎关注!
网页名称:react如何实现密码隐藏功能
标题链接:https://www.cdcxhl.com/article18/jgcidp.html
成都网站建设公司_创新互联,为您提供云服务器、网站设计、外贸建站、网站维护、网站策划、品牌网站制作
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联