我如何在文本输入中插入和设置按钮样式以响应本机,如下所示:
我可以使用任何这样的代码吗?
kwishnu.. 5
很抱歉造成延迟,但类似的方法应该可以解决:
{this.setState({searchText: textEntry})}} transparent'}} onSubmitEditing = {()=>{this.onSubmit(this.state.searchText)}} />
您可以根据图像调整尺寸,然后导入Button,如下所示:
import Button from '../components/Button';
我喜欢将按钮保留在一个外部文件夹中,就像:
import React, { Component } from 'react'; import { Text, TouchableOpacity } from 'react-native'; class Button extends Component { handlePress(e) { if (this.props.onPress) { this.props.onPress(e); } } render() { return (); } } export default Button; { this.props.children }
祝好运!
很抱歉造成延迟,但类似的方法应该可以解决:
{this.setState({searchText: textEntry})}} transparent'}} onSubmitEditing = {()=>{this.onSubmit(this.state.searchText)}} />
您可以根据图像调整尺寸,然后导入Button,如下所示:
import Button from '../components/Button';
我喜欢将按钮保留在一个外部文件夹中,就像:
import React, { Component } from 'react'; import { Text, TouchableOpacity } from 'react-native'; class Button extends Component { handlePress(e) { if (this.props.onPress) { this.props.onPress(e); } } render() { return (); } } export default Button; { this.props.children }
祝好运!