gpt4 book ai didi

android - TextInput - Samsung Pass 提示未出现

转载 作者:行者123 更新时间:2023-11-30 05:07:27 29 4
gpt4 key购买 nike

我是 android 生态系统的新手 (确定) 并尝试显示 Samsung Pass在登录页面提示。我有:

        <TextInput
textContentType="password"
autoCapitalize="none"
secureTextEntry={true}
value={this.state.password}
underlineColorAndroid="transparent"
/>

而且它不起作用。我的意思是 TextInput 确实有效,但提示没有出现在屏幕上。可能我遗漏了什么,或者更糟的是,它还没有在 React-Native 中实现(或类似的东西)。

任何可以帮助我显示 Samsung Pass Prompt 的建议、库?

使用:

  • 不是 Expo 应用
  • 响应 16.6.1
  • React-Native 0.57.5

最佳答案

这是带有 TextInput 的 React-Native-Modal,这里是一个示例。

    import React, {Component} from 'react';
import {Modal, Text, TouchableHighlight, View, Alert} from
'react-native';

class ModalExample extends Component {
state = {
modalVisible: false,
};

setModalVisible(visible) {
this.setState({modalVisible: visible});
}

render() {
return (
<View style={{marginTop: 22}}>
<Modal
animationType="slide"
transparent={false}
visible={this.state.modalVisible}
onRequestClose={() => {
Alert.alert('Modal has been closed.');
}}>
<View style={{marginTop: 22}}>
<View>
<TextInput
textContentType="password"
autoCapitalize="none"
secureTextEntry={true}
value={this.state.password}
underlineColorAndroid="transparent"
/>
</View>
</View>
</Modal>

<TouchableHighlight
onPress={() => {
this.setModalVisible(true);
}}>
<Text>Show Modal</Text>
</TouchableHighlight>
</View>
); }}

关于android - TextInput - Samsung Pass 提示未出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54326855/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com