亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

阿合奇县| 广饶县| 长白| 西吉县| 理塘县| 甘泉县| 房产| 洪湖市| 贡觉县| 海阳市| 济阳县| 淅川县| 伊春市| 新和县| 蕲春县| 武穴市| 兰州市| 象州县| 吐鲁番市| 浑源县| 绥阳县| 慈溪市| 绵竹市| 景德镇市| 平定县| 铜梁县| 韶山市| 新宁县| 黄大仙区| 长治市| 武城县| 汕头市| 赫章县| 恩施市| 界首市| 京山县| 武夷山市| 沈丘县| 武功县| 罗江县| 新巴尔虎左旗|