Posts by Pedro Henrique • 143 points
6 posts
-
0
votes1
answer227
viewsA: Flatlist does not render data when launching the Application - Firebase integration
There is a problem in your code, I do not know if it will solve the problem: The state vetor is immutable, and should only be modified by the function setVetor. You’re giving a push in vetor which…
-
0
votes1
answer734
viewsA: How to validate phone with React-Native sms
You should use services such as https://www.twilio.com/sms. In case, you generate a code, send by SMS to the number and the user must confirm.…
-
0
votes1
answer46
viewsA: Class declaration error in React-Native
Shouldn’t be var evento = new Play();
-
1
votes2
answers689
viewsA: How do I select this in the Firebase Cloud Firestore database?
// Creates reference for Collection products var produtosRef = db.collection("produtos"); // Creates the query var query = produtosRef.where("numero_serie", "==", $_numeroSerie) See the official…
-
0
votes1
answer55
viewsA: Enable "search" button only after user type 5 letters - IONIC V3
Yes, it is possible. Consider that you have an input as below: <ion-item> <ion-label floating>Buscar</ion-label> <ion-input [(ngModel)]="buscar" (ionChange)="enableButton()"…
-
0
votes1
answer436
viewsA: I can’t start development on React-Native in any way
Hello, this seems to me some problem with the Node. Try turning the meter with verbose. yarn start --verbose Are you running the latest version of RN 0.60.5? What is your version of Node.js?…
react-nativeanswered Pedro Henrique 143