中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

峨山| 当涂县| 新昌县| 宕昌县| 龙州县| 台前县| 宝应县| 康定县| 辽阳市| 自贡市| 胶州市| 黄龙县| 穆棱市| 云浮市| 镇沅| 响水县| 巍山| 固原市| 微山县| 炉霍县| 黔江区| 攀枝花市| 石河子市| 西贡区| 榆中县| 黎城县| 奈曼旗| 青铜峡市| 富源县| 平江县| 南漳县| 利川市| 万全县| 台山市| 黄浦区| 康马县| 绥芬河市| 潼南县| 丰县| 怀化市| 布拖县|