Skip to content

Instantly share code, notes, and snippets.

View evturn's full-sized avatar
🔒
Loading status...

Evan Turner evturn

🔒
Loading status...
View GitHub Profile
@evturn
evturn / react-native-pin.js
Created August 26, 2017 06:01
Simple component for managing an arbitrary amount of digits as input for a pin.
import React, { Component } from 'react';
import { StyleSheet, TextInput, View } from 'react-native';
/*
*
* class SomeComponent extends Component {
* onValueChange = pin => {
* return someOperation(pin);
* }
*