/* * 搜索结果页面 */ import React, { Component } from "react"; import { Platform, StyleSheet, Text, View, Image, TouchableOpacity, ImageBackground, Button, StatusBar, Modal, TouchableHighlight, DeviceEventEmitter, FlatList, TextInput } from "react-native"; import BasePage from "./BasePage"; import Dimensions from './utils/dimensions'; import ShopBox from "./components/ShopBox"; import TopicTitle from './components/TopicTitle'; import ScrollRow from './components/ScrollRow'; export default class SearchResult extends BasePage { state = { text: '123123123123' }; searchBox = () => { return ( this.setState({ text })} value={this.state.text} renderItem={item => this.renderItem(item)} /> ) } renderItem = (item) =>{ return ( ) } render() { return ( this.searchBox()} /> ) } } const styles = StyleSheet.create({ searchBox: { width: Dimensions.width, height: 60, alignItems: 'center', justifyContent: 'center', backgroundColor: '#f6f7f8' }, searchInput: { width: '88.5%', height: 40, borderRadius: 20, backgroundColor: '#fff' } })