How to upload data to firebase in flutter | Cloud Firestore | Flutter Tutorials

preview_player
Показать описание

In this video we will see how to upload data to firebase with flutter.
In upcoming videos we will see how to retrieve data and to get SHA 1 from flutter.
Рекомендации по теме
Комментарии
Автор

There are a tons of videos that waste your time. This a very short video is really amazing and understandable. I really like it. Thanks a lot.

amergaber
Автор

thank you so much for your very clear tutorial video
and love from Turkiye

developerbs
Автор

short and on point. Super bro keep coming with more videos😍

vamsikrishnayerubandi
Автор

OutStanding
Thanks alot keep it up for making such a short but more important vadios related to flutter and firebase....

codewithihsan
Автор

would have been nice if code was uploaded to github and not just your profile there.
i keep getting errors

feliciopedro
Автор

thanks for this video! helped me a lot!

indahsaqinah
Автор

thank you so much, you truly saved my life

vedmodikauratg
Автор

Good explanation sir...How to assign an unique field to the document id in this code???

soushie
Автор

Thank you so much for your clarification

sulavthapa
Автор

Simple y claro! Muchas gracias ahora a trabajar duro 💪💪💪

IronRacer
Автор

can u please tell how u connected the firebase with your app. The creation of project on firebase

priyadikshit
Автор

to fix the code
you should use this kind of text editing controller
final "nameOfuser" <= (your own name can put there) = TextEditingController();
final emailOfuser = TextEditingController();

then you can call it like this
remove the CONST in the textfield.
for example
CONST TextField(
controller: nameOfuser,
decoration: InputDecoration(
filled: true,
fillColor: Colors.white,
hintText: "Name",
border: OutlineInputBorder(),
),
the const text field will show an error.

TextField(
controller: nameOfuser,
decoration: InputDecoration(
filled: true,
fillColor: Colors.white,
hintText: "Name",
border: OutlineInputBorder(),
),
by removing it will not show an error.
wish I can help you guys :)

checkerface
Автор

thanks a lot, really simple and helpful

syahirizzuddin
Автор

How do I make the document name match the User ID in Auth?

lefentsemphahlele
Автор

Short and sweet
Can you make video to upload data with phone authentication user validating

saridesatishkumar
Автор

thanks alote but can you upload images to the cloud?

Al-utli
Автор

Firebase Database connection was forcefully killed by the server. Will not attempt reconnect. Reason: Firebase error. Please ensure that you have the URL of your Firebase Realtime Database instance configured correctly.

zenZcoder
Автор

Excuse me sir, can i get the source code

Wilson-qhrh