Posts by Guilherme Trivilin • 101 points
2 posts
-
-3
votes2
answers2984
viewsA: How do View move when displaying keyboard (IOS and Android) in React-Native?
For those who want to Keep the code clean, just use the Flatlist Component and add a View Component involving the Component with the States: {flex: 1, height: Dimensions.get ("window"). Height}.…
-
0
votes2
answers199
viewsA: How to request and update a status before render
Can use conditional rendering... export default class App extends Component { state = { requisicao: null } funcaoDeRequisicao = async () => { //aqui faz a requisicao e seta o estado } return…