blob: 5590caf000b09cdd9163dc0cb5f5bf8dbe34108c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import React from 'react';
import {
RkButton,
RkTextInput,
RkText,
RkStyleSheet,
} from 'react-native-ui-kitten';
import { FontAwesome } from '../assets/icons';
export class PasswordTextInput extends React.Component {
state = {
hidden: true,
};
onInputLabelPressed = () => {
this.setState({ hidden: !this.state.hidden });
};
renderInputLabel = () => (
<RkButton
style={styles.button}
rkType='clear'
onPress={this.onInputLabelPressed}>
<RkText style={styles.icon} rkType='awesome secondaryColor'>{FontAwesome.slashEye}</RkText>
</RkButton>
);
render = () => (
<RkTextInput
autoCapitalize='none'
rkType='bordered rounded iconRight'
autoCorrect={false}
label={this.renderInputLabel()}
secureTextEntry={this.state.hidden}
{...this.props}
/>
);
}
const styles = RkStyleSheet.create({
icon: {
fontSize: 24,
},
button: {
right: 17,
},
});
|