Skip to content

Instantly share code, notes, and snippets.

@pstockley
pstockley / SearchField.js
Created October 6, 2016 01:48
Cross Platform Search Field on Exponent
/* @flow */
import React from 'react';
import {StyleSheet, Text, View, TextInput, Platform} from 'react-native';
import _ from 'lodash';
import {MaterialIcons, Ionicons} from '@exponent/vector-icons';
import TouchableNativeFeedbackSafe from '@exponent/react-native-touchable-native-feedback-safe/TouchableNativeFeedbackSafe';
type KeyBoardType = "default" | "email-address" | "numeric" | "phone-pad" |