您好,登錄后才能下訂單哦!
這篇文章主要講解了“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如何實現密碼隱藏功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。