chat_app_live_stream
chat_app_live_stream copied to clipboard
thank you for sharing your chat app code. i've got enhancememt point of your chat app. ## Problem * other people sent message to you. * but scroller doesn't go...
related issue : #4
One more things for other people using this example as starting point for their own efforts (as i ve done) .Putting StreamBuilder() together with a firestore Stream inside Flutter build()...
signInWithEmailAndPassword cant be assigned to FirebaseUser directly. Need to do another call like this: ``` FirebaseUser user = (await _auth.signInWithEmailAndPassword( email: email, password: password, )).user; ```
Not everyone wants to use Firebase, but i sympathise that its easy for Flutter examples. Maybe make a golang or Dart server that does change notification and generates the CUD...