美文网首页
Day4 处理文本输入/

Day4 处理文本输入/

作者: 十旋转45度 | 来源:发表于2017-11-22 17:08 被阅读0次

    参考: 处理文本输入

      constructor(props) {
        super(props);
        this.state = {text: ''};
      }
    
      render() {
        return (
          <View style={{padding: 10}}>
            <TextInput
              style={{height: 40}}
              placeholder="Type here to translate!"
              onChangeText={(text) => this.setState({text})}
            />
            <Text style={{padding: 10, fontSize: 42}}>
              {this.state.text.split(' ').map((word) => word && '🍕').join(' ')}
            </Text>
          </View>
        );
      }
    }
    

    相关文章

      网友评论

          本文标题:Day4 处理文本输入/

          本文链接:https://www.haomeiwen.com/subject/aeenvxtx.html