Github user weifengsmile commented on the issue:
https://github.com/apache/incubator-weex/pull/1239
```
<template>
<div class="wrapper">
<text class="greeting">The environment is ready!</text>
<input type="text" placeholder="Input Text" class="input" value=""/>
</div>
</template>
<script>
export default {
name: 'App',
data () {
return {
}
}
}
</script>
<style scoped>
.input {
background-color: #ffffff;
margin-top: 300px;
width: 300px;
height: 80px ;
padding: 20px;
color: #000000;
}
.wrapper {
justify-content: center;
align-items: center;
background-color: #888888;
}
.greeting {
text-align: center;
margin-top: 70px;
font-size: 50px;
color: #41B883;
}
</style>
```

It is very simple. You can check the image:



**Issue 1: The WXRootView cannot reset to original position.**
**Issue 2: The keyboards cover a apart of the input component.**
@wqyfavor
---