91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

react如何實現密碼隱藏功能

發布時間:2023-01-03 15:42:06 來源:億速云 閱讀:175 作者:iii 欄目:web開發

這篇文章主要講解了“react如何實現密碼隱藏功能”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“react如何實現密碼隱藏功能”吧!

react實現密碼隱藏功能的方法:1、添加依賴“import {View,Text,TouchableWithoutFeedback,TextInput,Image,StyleSheet,} from 'react-native';”;2、通過“{this.state.imageState ? (...)}”方法實現密碼顯示與隱藏功能即可。

React Native 密碼輸入的顯示與隱藏 Image點擊事件 眼睛 輸入框密碼

1.效果圖

react如何實現密碼隱藏功能

react如何實現密碼隱藏功能

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如何實現密碼隱藏功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东港市| 南昌县| 黑水县| 宁津县| 松桃| 高台县| 布拖县| 龙岩市| 敖汉旗| 宣汉县| 二连浩特市| 瑞昌市| 乐亭县| 茌平县| 突泉县| 翁源县| 阜康市| 北宁市| 株洲县| 峨山| 台中县| 呼伦贝尔市| 荆门市| 阳新县| 临沭县| 兴宁市| 嘉善县| 汪清县| 武强县| 沙田区| 咸丰县| 舟山市| 乳源| 南城县| 游戏| 洪雅县| 宁阳县| 固原市| 饶河县| 博罗县| 巫山县|