(CRUD)📱Read & Display Data • Firebase x Flutter Tutorial ♡

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор


You might want to watch the previous videos first 👨🏽‍💻

createdbykoko
Автор

I have had a mentor for every programming language, library or framework I have learned in my life.

From now on you are my Flutter Mentor.

As Assassin's say, "I accept you as my Mentor."

aayasir
Автор

Mitch, are you going to cover relational data. sort of like linking the instance of a user to their information, name, age and stuff??

arinahomuleba
Автор

for all those people asking how to display current users data only . just chnage two things. remove this ( final user= instead write this(User? user = after that inside ur function change ur collection and write this ( await FirebaseFirestore.instance.collection('listof').where('email', isEqualTo: user?.email).get().then(
(snapshot) => {
print(document.reference);

}),
);

) . after this u will get one error. right click oh the error and change and it will give u an option to add null.. add that and this willget current user data on the basis of email.

naumancr
Автор

For people who are getting and issue with adding users to the collection, Just update your collection rules with this : allow read;
allow write: if request.auth != null;, this way you can access the collection data (read/write) if the user is authenticated!!

learnwmalik
Автор

I got to say,

This is the best tut I have seen. I would by your udemy course if you had one. The way you explain things is awesome. Never understood listview builders until now. Tomorrow I am going to check out the how to implement firebase and how to get the data out.

Thanks again brother. Liked and subscribed!

vijaypanday
Автор

Thanks for this as it was very helpful but can you please explain how can we store single users every information at once in a profile screen

anbeshathapa
Автор

Hey Mitch, when will you be uploading the Update & Delete function. Cannot wait for that!!

rockwt
Автор

Mitch, did you notice on (CRUD)📱Read & Display Data... when we save the get_user_name.dart or home_page.. list_view and list tiles getting duplicated and building up a huge list unless we hot reload.. do you know which widget is rebuilding over and over again up on save?

writecode
Автор

You're one of the best teachers of Flutter there is! I have a question...let's say you wrapped the List Tile in a Gesture Detector and when you clicked it, it brought you to a new page to display that List Tile information (name, age, etc of that particular user). How would you fetch and display that info on the new page? I have not been able to get an answer anywhere on this. Thanks for your help!

FullStackDad
Автор

I started becoming addicted to your videos and your channel

معنيالأمان-جج
Автор

hey, can you make a video on how to get data of only the current user instead of everyone in the database, if we wanted to make a profile page, then we would want to display data of the current user only

dvnss
Автор

Am very grateful for this video, how I use a data-table instead. THANK

owoeyeoluwajuwonlo
Автор

Small request please add episode number for each video.... so we can watch previous video with going through assumptions..

charan
Автор

so what if i wanted to fetch all email, password, fullname, etc for a profile page?

ItsMe-rldt
Автор

Thank you for the amazing explanation, but I have an issue as I'm new to programming, how can I return one name, without the list...😅 for example hello name

SullyS
Автор

how to update(edit) data in firebase firestore

madharry
Автор

hey.
can you do google and facebook sign in videos?

Shakiy
Автор

hello, explain how to use the chat app with mysql in a video, please

AlisherMahammadjonov-wnyl
Автор

What is your android studio version?
What is your flutter version?
Language level?


Because I want to add the flutter pluggin to my projectand the classpath line on the build gradle file

danielmiranda