Posts by Reinaldo Souza • 31 points
3 posts
- 
		1 votes2 answers1149 viewsQ: Insert comments into an IONIC appI am creating an application where underneath the content of the page I have the option of the user to make a comment. I’m using firebase to register and login and I’ve even been able to record the… 
- 
		0 votes1 answer54 viewsQ: How to write data to firebase by Ionic without erasing what is already saved?My Create method is like this create(user: User, uuid: string): Promise<void> { return this.db.object(`/users/${uuid}`) .set(user) .catch(this.handlePromiseError); } And my User class is like… 
- 
		2 votes1 answer656 viewsQ: Town Spinner connected with the State SpinnerI have 2 spinner in my application, one populated with the name of the states I registered in the database in firebase and another with the cities, they are linked by the state ID. I managed to…