React native to do a chat interface, how to transfer the value of the input box to the page

clipboard.png

is when you click to send, how can the value of the input box appear on the page as usual?

Aug.04,2021

the above conversation should be an array object, for example:

[{
    role: 'A',
    content: ",A"
},{
    role: 'B',
    content: "B"
}]

you just need to build the same object,

{
    role: 'B',
    content: ''
}

push to this array, time to talk and update


you can update via setState. Let's take a look at this article
https://www.cnblogs.com/xiaoy.

.

Menu