Note that in this method we update the state of our app when ever the user click on the button, and Vue Native internally talk with the React Native to update the UI Elements
Vue Native also provides the v-model directive that makes two-way binding between form input and app state a breeze:
<viewclass="container"> <text-input class="text-input-container" placeholder="Type here to translate!" v-model="textContent" /> <textclass="text-container">{{textContent}}</text> </view>