import React, {Component} from 'react'; import Global from '../utils/Global'; import { Button, Dimensions, Image, PixelRatio, StatusBar, StyleSheet, TextInput, TouchableOpacity, View, Platform } from 'react-native'; const {width} = Dimensions.get('window'); export default class SearchTitleBar extends Component { constructor(props) { super(props); this.state = { inputContent: '' } } renderAndroid() { return ( { this.setState({inputContent: text}) }} style={styles.textInput} underlineColorAndroid="transparent"/>