Posts by wagner123 • 11 points
2 posts
-
1
votes2
answers3478
viewsQ: How do I clean Input after saving the data?
export default class Calculo extends Component{ constructor(props){ super(props) this.state = { data: '', horario: '', ctTotalInput: '', ldlInput: '', hdlInput: '', vldlInput: '' } this.salvarDados…
react-nativeasked wagner123 11 -
0
votes1
answer61
viewsQ: How do I access the iddoFeed and get all data independent of the logged in user
firebase.database().ref('feeds').once('value').then((snapshot) => { let feeds = [] snapshot.forEach((childItem) => { feeds.push({ key: childItem.key, id: childItem.val().id, id_user:…