React Native手势密码组件

前端之家收集整理的这篇文章主要介绍了React Native手势密码组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文原创首发于公众号:ReactNative开发圈,转载需注明出处。

这次介绍的React Native手势密码组件为react-native-gesture-password,纯JavaScript实现,同时支持iOS和安卓平台。

效果

安装

npm install react-native-gesture-password --save

属性

所有的属性都是可选的。现在列举几个重要属性

message (string)

用户提示信息,如请输入手势密码,手势密码不准确等此类消息。

status (string)

状态为:'normal','right' or 'wrong’.验证手势密码是否准确是需要自己在onEnd事件中来判断的。

onStart (function)

用户开始输入手势密码时触发。

onEnd (function)

用户结束输入手势密码时触发。

示例

  1. var React = require('react');
  2. var {
  3. AppRegistry,} = require('react-native');
  4.  
  5. var PasswordGesture = require('react-native-gesture-password');
  6.  
  7. var Password1 = '';
  8. var AppDemo = React.createClass({
  9. // Example for check password
  10. onEnd: function(password) {
  11. if (password == '123') {
  12. this.setState({
  13. status: 'right',message: 'Password is right,success.'
  14. });
  15.  
  16. // your codes to close this view
  17. } else {
  18. this.setState({
  19. status: 'wrong',message: 'Password is wrong,try again.'
  20. });
  21. }
  22. },onStart: function() {
  23. this.setState({
  24. status: 'normal',message: 'Please input your password.'
  25. });
  26. },onReset: function() {
  27. this.setState({
  28. status: 'normal',message: 'Please input your password (again).'
  29. });
  30. },// Example for set password
  31. /*
  32. onEnd: function(password) {
  33. if ( Password1 === '' ) {
  34. // The first password
  35. Password1 = password;
  36. this.setState({
  37. status: 'normal',message: 'Please input your password secondly.'
  38. });
  39. } else {
  40. // The second password
  41. if ( password === Password1 ) {
  42. this.setState({
  43. status: 'right',message: 'Your password is set to ' + password
  44. });
  45.  
  46. Password1 = '';
  47. // your codes to close this view
  48. } else {
  49. this.setState({
  50. status: 'wrong',message: 'Not the same,try again.'
  51. });
  52. }
  53. }
  54. },onStart: function() {
  55. if ( Password1 === '') {
  56. this.setState({
  57. message: 'Please input your password.'
  58. });
  59. } else {
  60. this.setState({
  61. message: 'Please input your password secondly.'
  62. });
  63. }
  64. },*/
  65.  
  66. getInitialState: function() {
  67. return {
  68. message: 'Please input your password.',status: 'normal'
  69. }
  70. },render: function() {
  71. return (
  72. <PasswordGesture
  73. ref='pg'
  74. status={this.state.status}
  75. message={this.state.message}
  76. onStart={() => this.onStart()}
  77. onEnd={(password) => this.onEnd(password)}
  78. />
  79. );
  80. }
  81. });
  82.  
  83. AppRegistry.registerComponent('AppDemo',() => AppDemo);

组件地址

详细说明和示例代码请查看GitHub:https://github.com/Spikef/rea...

举手之劳关注我的微信公众号:ReactNative开发圈

猜你在找的React相关文章