I am developing an application for users signing up with their mobile numbers. Now I have to develop a chat module in my app How to integrate flutter firebase chat without google sign-in.
I have tried with the anonymous sign but the user's chat is not stored in firebase. May I know the steps to use firebase chat in-app and how to integrate firebase without manual google sign into my application?
My app uses Firestore to save favorites for users and my client needs to have the users' favorites but in a googlesheet for creating reports is there a way to export data or sync from firestore to google sheet?
I have developed a flutter app for WEB and Android I store transaction data using sembast. I want to sync the data between my mobile app and web app just like Whatsapp WEB.How do I implement this without sending data to all the user's but only the specified user with a unique Id.
With Flutter and cloud messaging, is it possible to send a push notification to one or more devices (with tokens) not with the Firebase console, but with a web API, PHP, NodeJS ... ?
What you want is possible, but not in the way you're thinking. The best way to handle this is to have your flutter app contact your backend through an API and then the backend would send the notifications to the devices using firebase cloud messaging.
Check out Firebase Admin SDK or their simple JS Web api.
https://firebase.google.com/docs/cloud-messaging/js/send-multiple
I'm new to swift so just looking for some help/tutorials on the below app I'm trying to build.
I have a form where users insert their address (using autocomplete/googleplaces).
I then want this data to save to firebase and place a pin on google maps inside the app.
Thanks