Note that you should use the console to edit the Database.Rules to avoid a PERMISSION error on the android app; change "allow read, write: if false;" to "allow read, write: if true;"
Thank you so so much It's so clear that can understand how connect to database and write data just following. Thank you for serving this amazing dart language and flutter developers.
I've start using flutter, though it's very hard to find a good example of how to, There're lot of videos I'd like to have just a doc that explains every widget. Thanks for the video tutorial and great job
I've some few questions about flutter like MVC pattern, an authentication default process(that's common on other frameworks), localization default pattern...flutter has a great variability of widgets, though to turn itself in a complete solution it needs a little more effort, it's on the right path. Thanks for your reply, & have a nice life.
Thank you for your infromative tutorial. However, we are in 2021 and too much updates applied on Flutter and Dart. Therefore, we need a 2021 videos. Appretiate the help.
I am aware that firestore is in beta. But if i were to use it in production in one of my apps, Will firebase team notify devs about breaking changes before they were made Please reply
I'm not on the Firebase team (so I can't speak for them), but I'd be *extremely* surprised if that weren't the case. You can always try posting on their discussion forum just to be sure, though: groups.google.com/forum/#!forum/firebase-talk
At 2:07 in the video, to register the flutter app in Firebase where Do I go to my Flutter solution to get that Android App name? The instructions I get from that help, I can't find the name. Where di you get "com.flutter.firebase.example.flutterfirebase" ?
There really is a ton of work being done for you here. I normally would have to setup a socket server and a way to sync things together upon fresh load etc etc. I wonder about buffering when say there are 10000 things going on at once meaning say you were showing popular posts in a feed that were showing meta items like votes and chat counts etc.
If transactions are made to prevent race conditions, why can't you use them when you are offline / what do you do when two clients edit the same field of one document and you want to merge the changes (i.e. if the field is a list)
Hey Andrew, thanks for the awesome video. I have a question. Let's say you log in with firebase and pull some data down e.g. your latest band votes/results. Now lets say you close the app completely, even from the background. Then you open it again with no internet. Will it still use the last data pulled from firestore, or will it use the default values that you demonstrated? Thanks
Good tutorial. I would have mentioned, however, that the iOS step for adding the Pod dependency SHOULD be skipped, instead of not mentioning it at all. But still good, I got started pretty quickly.
app channels spinning some time when using google firebase database and flutter application. how to download or backup firebase database . is there any automatic backups
Every time the list gets updated, is that a read from the database from each item? So 10 items would be 10 reads? Seems far too costly to use firestore database if that's the case.
I searched the whole internet but could not find a single lesson on how to connect flutter and dart to mysql on phpmyadmin (not local host, its hosted on a server) or how to implement CRUD operations, please do some lessons for us, thank you so much
If I was in a band, I have would have not thought this much at first place. And if I tried to think that much, I would have smashed my guitar out of frustration.
Hi, in your code at the time of configure firestore you didn't use any kind of "firestore.settings()" the way it has been mentioned it here - pub.dartlang.org/packages/cloud_firestore#-example-tab- . Is it really require to mention this setting thing or not? I'm bit confused about this.
When you install the google-services.plst for ios make sure to install it by opening the project in xcode and right clicking on the Runner Folder and using add file to add the google services file. Otherwise if you drag and drop it in your editor like intellij for some reason it makes the app freakout and create a bunch of errors. Took me 7 hours of trouble shooting to figure out that this was all I needed to do.
github.com/beelerb/flutter_firestore_example It's just the code the video starts and ends with but better than nothing and it works. Note the part about the pubspec.yaml file.
Hi, by any chance do you have a video which you can link me to, that tackles the function of reading out-loud data fetched from Firestore as audio to user? Thanks
In this video, I'm using the snapshot to build widgets and update the UI, but you can (in theory) do whatever you want with it. For example, you could listen to the stream with a function that stored the data in SQLite, local files, or something similar.
I didn't understand the point you mentioned at the end regarding the use of transactions instead of using the rudimentary updateData function. Could someone please explain this to me in simple words?
To increment the number of votes, the app needs to do three things: 1) Read the number of current votes from Firebase. 2) Add one to that value. 3) Store the new value in Firebase. If you only have one user, this works great. What if you have two users, though, who try to increment at the exact same time? They would both read the current value at the same time, add one to the same value, and then store it. Instead of getting n+2, you'd get n+1. Transactions can fix that. They make it so one client will execute all three steps at once, while the other sits and waits for their turn. When the first client is done, the next one can have a go with their three steps.
I'm not being able to connect the Flutter app to Firebase for iOS. I followed exactly all the steps but I couldn't get the data from the database. Also, I couldn't verify the installation because it never finished. I waited some time there, but got no results. I have looked all over the internet to find a solution but none have been of use. I tried deleting pod files, I checked AppDelegate.swift, pubspec dependencies. All. Please, I really need help here.
Hopefully you've already found a solution to the issue, but if not, try posting on the FlutterDev Google group. You can include code, config files, and so on. The folks there are helpful and typically very experience with Flutter: groups.google.com/forum/#!forum/flutter-dev
I love firebase, but lately using firebase on the ios side has been a pain in the ass. The latest project I started on takes 8 minutes to build when adding the auth and cloud_firestore plugins, and If I try to add the google_sign_in plugin the project simply won't compile. It works fine on Android but on iOS its a very different story. Could you please fix the plugin or update the docs to reflect any changes you have to make to your iOS project to get it to play nicely with firebase and google_sign_in
Amazing and a really good explanation. It works to me. I think the documentation in firebase is not up to date because I couldn't be able to run firebase in my flutter app, a lot of problem in gradle file.
try this in -> gradle.properties add: android.useAndroidX=true android.enableJetifier in -> app/build.gradle change: minSdkVersion from 16 to 21 add: dependancies implementation 'androidx.multidex:multidex:2.0.0'
how can i use firestore in custom package ? if i want to create a flutter package that uses firebase.. where to put json file, package android directory, or user app android directory ???
#askflutter Hi Andrew, a noob question - With respect to Firebase client SDKs, we have android and iOS but not specifically for Flutter and I assume we need to download both for working with Flutter? In terms of the whole array of features that Firebase and suite of integration it offers, is it safe to assume that all firebase features available if we were to write only android/iOS using their respective client SDKs be available in Flutter as well (or) are there any constraints that we need to be aware of? Thank you 😊
@@emilyfortuna2262 thanks for yours response...actually i am getting data by fetching n items at once.And the problem arises when i fetch next batch of items,i am unable to put the next batch into stream.
I've set this up but it wasn't so straightforward and took a lot of time... different versions of the plugins were incompatible and project settings needed to be modified for both Android and iOS.
Great video, but what about the e2ee... using this approach the users data is visible to the firebase console manager, that is against the EU GDPR law...
This video is mostly scoped to using Firebase collections with Flutter widgets. If you're interested in Firebase's security and privacy support, I highly recommend this doc: firebase.google.com/support/privacy
i got this error when run on iphone simulator. /Users/nuwan/Downloads/fluttertest/ios/Pods/FirebaseDatabase/Firebase/Database/third_party/Wrap-leveldb/APLevelDB.mm:54:9: fatal error: 'leveldb/db.h' file not found #import "leveldb/db.h"
Possible issues in integrating to Firestore and solutions [2020]: 1. No Firebase App '[DEFAULT]' has been created - stackoverflow.com/questions/63492211/no-firebase-app-default-has-been-created-call-firebase-initializeapp-in 2. D8: Cannot fit requested classes in a single dex file - stackoverflow.com/questions/55591958/flutter-firestore-causing-d8-cannot-fit-requested-classes-in-a-single-dex-file 3. Plugin with id 'com.google.gms.google-services' not found - stackoverflow.com/questions/39892622/plugin-with-id-com-google-gms-google-services-not-found 4. firestore: PERMISSION_DENIED: Missing or insufficient permissions - stackoverflow.com/questions/46590155/firestore-permission-denied-missing-or-insufficient-permissions 5. Dart/Flutter : Converting timestamp - stackoverflow.com/questions/50632217/dart-flutter-converting-timestamp 6. How to print Firestore timestamp as formatted date and time - stackoverflow.com/questions/56627888/how-to-print-firestore-timestamp-as-formatted-date-and-time 7. FLUTTER | How to add data to an existing document in firestore - stackoverflow.com/questions/50559148/flutter-how-to-add-data-to-an-existing-document-in-firestore
Hi there! Awesome content! I have been looking all over the internet and firebase website a tutorial of how to populate a list (by hand) like you did in minute 3:20. Specifically how to upload media files and assigning them a link to reference them in a collection or document. I am looking for a solution that can be done only using the console. I don't want to "code" my library into my project. So far I only find examples of how to develop apps that interact with the collections and documents. I am trying to develop an app where the users only read from the library I will be populating. They create playlists from the existing collections and their "child" users can play their specific playlists. Can someone please point me the right direction. A document or video tutorial works for me. I am really not being lucky finding the right document or video tutorial. Super thank ful in advance!
Hi, I am using Firestore plugin to communicate with my data. My question is how to get data with a condition with Firestore? Or how to Find a user by email address? I think this question will be asked from many programmers. Thank you,
I'm not showing it in this episode, but the Firestore plugin contains a Query class that can help you with this: github.com/flutter/plugins/blob/master/packages/cloud_firestore/lib/src/query.dart
Compact with exactly useful information. The most professional flutter tutorial video I've seen so far. Thank you.
Thanks Andrew! That it very useful! I need to say, you got a natural and friendly voice to explain!
This was really cool! The like button lights up when he gets to the part where he talks about the db updating in response to UI events!
Honestly a really amazing video. Very thorough, informative and somehow condensed into a 12 minute video. Thanks a lot
this covers all I need to know in less than 12 minutes. what a video.
At [8:26] snapshot.data.documents.length not working in 2021.. any help
I also have the same issue....., If you resolved it please share me
Do the following:
body: StreamBuilder(
stream: FirebaseFirestore.instance.collection('YOUR_COLLECTION').snapshots(),
builder: (
context,
AsyncSnapshot snapshot) {
if (!snapshot.hasData) return const Text('Loading..');
final data = snapshot.requireData;
return ListView.builder(
itemExtent: 80.0,
itemCount: data.size,
itemBuilder: (context, index) =>
_buildListItem(context, data.docs[index]),
);
},
),
this was awesome!! please make more like these and go indepth
They put the iOS screenshot on the pixel...
Note that you should use the console to edit the Database.Rules to avoid a PERMISSION error on the android app; change "allow read, write: if false;" to "allow read, write: if true;"
Thank you so so much It's so clear that can understand how connect to database and write data just following. Thank you for serving this amazing dart language and flutter developers.
I've start using flutter, though it's very hard to find a good example of how to,
There're lot of videos I'd like to have just a doc that explains every widget.
Thanks for the video tutorial and great job
I've some few questions about flutter like MVC pattern, an authentication default process(that's common on other frameworks), localization default pattern...flutter has a great variability of widgets, though to turn itself in a complete solution it needs a little more effort, it's on the right path.
Thanks for your reply, & have a nice life.
Thank you for your infromative tutorial. However, we are in 2021 and too much updates applied on Flutter and Dart. Therefore, we need a 2021 videos. Appretiate the help.
I am aware that firestore is in beta. But if i were to use it in production in one of my apps, Will firebase team notify devs about breaking changes before they were made
Please reply
I'm not on the Firebase team (so I can't speak for them), but I'd be *extremely* surprised if that weren't the case. You can always try posting on their discussion forum just to be sure, though: groups.google.com/forum/#!forum/firebase-talk
They have been warning people about the changes in Firestore. For example, the change of dates to Timestamps
At 2:07 in the video, to register the flutter app in Firebase where Do I go to my Flutter solution to get that Android App name?
The instructions I get from that help, I can't find the name.
Where di you get "com.flutter.firebase.example.flutterfirebase" ?
2:56
Its amazing how simple this was to implement.
Hi Sundar Pichai !!
Are you listening?
Codelab link not working. Please update it.
THIS MAN KNOWS WHAT HE'S DOING
This looks surprisingly easy
There really is a ton of work being done for you here. I normally would have to setup a socket server and a way to sync things together upon fresh load etc etc. I wonder about buffering when say there are 10000 things going on at once meaning say you were showing popular posts in a feed that were showing meta items like votes and chat counts etc.
Can u able to fetch document files containing images and text from Firestore and display in flutter app?
You have to upload the images to Firebase Storage, then you paste the Storage reference of each file in Cloud Firestore
Same question i have
If transactions are made to prevent race conditions, why can't you use them when you are offline / what do you do when two clients edit the same field of one document and you want to merge the changes (i.e. if the field is a list)
Could we get some content on how to unit test and mock firestore? It's really hard to unit test streams and no information anywhere.
This is good. But please update the codelab to the recent changes, like the firebase core requirement.
I wish you showed us the whole code, it doesn't work. And it gives a load of errors.
Hey Andrew, thanks for the awesome video. I have a question. Let's say you log in with firebase and pull some data down e.g. your latest band votes/results. Now lets say you close the app completely, even from the background. Then you open it again with no internet. Will it still use the last data pulled from firestore, or will it use the default values that you demonstrated? Thanks
what's the difference between Firebase Real-time Database and Firebase Firestore?
The Firebase team has an article that can explain it way better than me. :) firebase.google.com/docs/database/rtdb-vs-firestore
Andrew Brogdon, that's what I like in Google - they foresee all my questions :)
Thanks Andrew!
Good tutorial. I would have mentioned, however, that the iOS step for adding the Pod dependency SHOULD be skipped, instead of not mentioning it at all. But still good, I got started pretty quickly.
app channels spinning some time when using google firebase database and flutter application. how to download or backup firebase database . is there any automatic backups
when a new document is added, snapshot fetches all the documents including the new one or only the newly added one ?
Hi i had error with gradle task assembledebug failed with exit code 1
Can you help me
Every time the list gets updated, is that a read from the database from each item? So 10 items would be 10 reads? Seems far too costly to use firestore database if that's the case.
I searched the whole internet but could not find a single lesson on how to connect flutter and dart to mysql on phpmyadmin (not local host, its hosted on a server) or how to implement CRUD operations, please do some lessons for us, thank you so much
You wouldn't want to directly connect over MySQL. You need to create a REST API to do this.
If I was in a band, I have would have not thought this much at first place. And if I tried to think that much, I would have smashed my guitar out of frustration.
why there is no doc support for flutter in firebase portal ???
Hi, in your code at the time of configure firestore you didn't use any kind of "firestore.settings()" the way it has been mentioned it here - pub.dartlang.org/packages/cloud_firestore#-example-tab- . Is it really require to mention this setting thing or not? I'm bit confused about this.
What is best for android or flutter in future?
Gradle problem when i try to use firebase.. fix this
When you install the google-services.plst for ios make sure to install it by opening the project in xcode and right clicking on the Runner Folder and using add file to add the google services file. Otherwise if you drag and drop it in your editor like intellij for some reason it makes the app freakout and create a bunch of errors. Took me 7 hours of trouble shooting to figure out that this was all I needed to do.
please is there a GitHub repository to this tutorial?
github.com/beelerb/flutter_firestore_example
It's just the code the video starts and ends with but better than nothing and it works. Note the part about the pubspec.yaml file.
Does not work on Android with cloud_firestore:, I need to add the version cloud_firestore: ^0.7.4 :(
Says cannot use firestore
Same problem me
Is possible to use Firebase for ios backend?
Yes :)
Ive started to use firestore but lets say for some reason i have to switch to somethinf different in the future. Will this process be easy?
Hi, by any chance do you have a video which you can link me to, that tackles the function of reading out-loud data fetched from Firestore as audio to user? Thanks
is there a way to store values locally using flutter and a local database like SQL?
In this video, I'm using the snapshot to build widgets and update the UI, but you can (in theory) do whatever you want with it. For example, you could listen to the stream with a function that stored the data in SQLite, local files, or something similar.
thanks a lot Andrew
I loved this guide, please more tutorials about flutter + firebase o/
Thanks, Andrew sir, Please keep coming with more videos
I am getting error from iOS xcode build - module “cloud_firestore” not found…. How can I fix the error
What about AngularDart/dart2js? Is the flutter team different from angulardart team?
I didn't understand the point you mentioned at the end regarding the use of transactions instead of using the rudimentary updateData function. Could someone please explain this to me in simple words?
To increment the number of votes, the app needs to do three things:
1) Read the number of current votes from Firebase.
2) Add one to that value.
3) Store the new value in Firebase.
If you only have one user, this works great. What if you have two users, though, who try to increment at the exact same time? They would both read the current value at the same time, add one to the same value, and then store it. Instead of getting n+2, you'd get n+1.
Transactions can fix that. They make it so one client will execute all three steps at once, while the other sits and waits for their turn. When the first client is done, the next one can have a go with their three steps.
I'm not being able to connect the Flutter app to Firebase for iOS. I followed exactly all the steps but I couldn't get the data from the database. Also, I couldn't verify the installation because it never finished. I waited some time there, but got no results. I have looked all over the internet to find a solution but none have been of use. I tried deleting pod files, I checked AppDelegate.swift, pubspec dependencies. All. Please, I really need help here.
Hopefully you've already found a solution to the issue, but if not, try posting on the FlutterDev Google group. You can include code, config files, and so on. The folks there are helpful and typically very experience with Flutter: groups.google.com/forum/#!forum/flutter-dev
Yes sometimes i come down here to see how many developers are using flatter
Do you have to choose between Firestore and the Realtime Database or can you have both?
You can indeed use both in the same app: firebase.google.com/docs/firestore/firestore-for-rtdb
I can use flutter and firebase in my androids and ios while on web I use React and firebase? Thanks.
why isn't document['name'] not working?
it shows this error: The operator '[]' isn't defined for the type 'DocumentSnapshot'
While using latest version (^0.14) callling document['name' ] is deprecated... the right way is document.data()['name']
thank u for this tuto i want to ask you how can i get a stream from a specific user
Is there any free web development course offering by google.
Oooooooooooooooooooh my good that's exactly what i was searching for thaaank you so much google i looooooove you man
Is there a place I could find the code used in this video? A github link or something?
How can we check if a transaction fails?
I love firebase, but lately using firebase on the ios side has been a pain in the ass. The latest project I started on takes 8 minutes to build when adding the auth and cloud_firestore plugins, and If I try to add the google_sign_in plugin the project simply won't compile. It works fine on Android but on iOS its a very different story. Could you please fix the plugin or update the docs to reflect any changes you have to make to your iOS project to get it to play nicely with firebase and google_sign_in
Is it possible to stream mp4 or mkv video from url? In flutter
So your atomic operation can be async?
How do you do this for Firebase Web?
what about youtuber api? any vídeo on it?
Is there a convinient way to transfer firebase project from one google acc to another?
Amazing and a really good explanation. It works to me. I think the documentation in firebase is not up to date because I couldn't be able to run firebase in my flutter app, a lot of problem in gradle file.
try this
in -> gradle.properties
add:
android.useAndroidX=true
android.enableJetifier
in -> app/build.gradle
change:
minSdkVersion from 16 to 21
add:
dependancies
implementation 'androidx.multidex:multidex:2.0.0'
What about Google Cloud Datastore? Are there any examples of using that as a backend for Flutter projects?
Andrew Brogdon: 10:04
Me: Yeah I Know... I Know...
Is there a code repository for this source?
Can I use flutter to make a order delivery + customer loyalty app?
how can i use firestore in custom package ? if i want to create a flutter package that uses firebase.. where to put json file, package android directory, or user app android directory ???
hi guys . is there a tutorial out there about how to set custom claims / role based auth / rolebased access contorll in flutter using firebase?
Hey,
Thank you very helpful video, I have question is this was an UI kit mobile app?
Can I use golang as my server side language with flutter?
The codelab link is not working. Please update it
But isn´t that solution of updating the data with a Transaction muchh slower than just changing the value as the first solution?
#askflutter
Hi Andrew, a noob question -
With respect to Firebase client SDKs, we have android and iOS but not specifically for Flutter and I assume we need to download both for working with Flutter? In terms of the whole array of features that Firebase and suite of integration it offers, is it safe to assume that all firebase features available if we were to write only android/iOS using their respective client SDKs be available in Flutter as well (or) are there any constraints that we need to be aware of?
Thank you 😊
how can i add data to a sub-collection with flutter?
Can I use Firestore as a backend to my Wibblewobble app, with Zigizigah as the front end?
Only if you really really really wanna.
How can we paginate in stream builder?
@@emilyfortuna2262 thanks for yours response...actually i am getting data by fetching n items at once.And the problem arises when i fetch next batch of items,i am unable to put the next batch into stream.
What if I don't have the final name for my project, yet? Can I change it later?
Yes you can
Hey Andrew i was searching how to make a custom listview layout widget can you suggest where to search for that??
flutter.io/tutorials/layout/
Thanks so much ...
How will I add to Web app as well ?
I like illustrative video, awesome explanation great job,
I've set this up but it wasn't so straightforward and took a lot of time... different versions of the plugins were incompatible and project settings needed to be modified for both Android and iOS.
Great video, but what about the e2ee... using this approach the users data is visible to the firebase console manager, that is against the EU GDPR law...
This video is mostly scoped to using Firebase collections with Flutter widgets. If you're interested in Firebase's security and privacy support, I highly recommend this doc: firebase.google.com/support/privacy
How about user Registration and authentication? please help
snapshot.data.length? The getter 'length' isn't defined for the type 'Object'. Anybody?
Hi, Someone knows how to do a join in firebase and flutter ?
Hello, please i added the cloud firestore and now the app doesn't run on a device with api 19... please help
i got this error when run on iphone simulator.
/Users/nuwan/Downloads/fluttertest/ios/Pods/FirebaseDatabase/Firebase/Database/third_party/Wrap-leveldb/APLevelDB.mm:54:9: fatal error: 'leveldb/db.h' file not found
#import "leveldb/db.h"
Possible issues in integrating to Firestore and solutions [2020]:
1. No Firebase App '[DEFAULT]' has been created - stackoverflow.com/questions/63492211/no-firebase-app-default-has-been-created-call-firebase-initializeapp-in
2. D8: Cannot fit requested classes in a single dex file - stackoverflow.com/questions/55591958/flutter-firestore-causing-d8-cannot-fit-requested-classes-in-a-single-dex-file
3. Plugin with id 'com.google.gms.google-services' not found - stackoverflow.com/questions/39892622/plugin-with-id-com-google-gms-google-services-not-found
4. firestore: PERMISSION_DENIED: Missing or insufficient permissions - stackoverflow.com/questions/46590155/firestore-permission-denied-missing-or-insufficient-permissions
5. Dart/Flutter : Converting timestamp - stackoverflow.com/questions/50632217/dart-flutter-converting-timestamp
6. How to print Firestore timestamp as formatted date and time - stackoverflow.com/questions/56627888/how-to-print-firestore-timestamp-as-formatted-date-and-time
7. FLUTTER | How to add data to an existing document in firestore - stackoverflow.com/questions/50559148/flutter-how-to-add-data-to-an-existing-document-in-firestore
Hi there! Awesome content!
I have been looking all over the internet and firebase website a tutorial of how to populate a list (by hand) like you did in minute 3:20. Specifically how to upload media files and assigning them a link to reference them in a collection or document. I am looking for a solution that can be done only using the console. I don't want to "code" my library into my project.
So far I only find examples of how to develop apps that interact with the collections and documents. I am trying to develop an app where the users only read from the library I will be populating. They create playlists from the existing collections and their "child" users can play their specific playlists.
Can someone please point me the right direction. A document or video tutorial works for me. I am really not being lucky finding the right document or video tutorial.
Super thank ful in advance!
i didnt really follow why we changed the onTap function from a plain update to something else...could someone help me out on this please?
Could you make a video how to join collections?
I am getting error.....Firebase: Could not find the Android Application module.
coool! Can we have a tutorial talking about AndroidX Migration? I have serious troubleshooting
my app stops whenever i run it. 'Unfortunatelly app has stopped'. Ididnt write any code, i just added the firestore.
Hi,
I am using Firestore plugin to communicate with my data. My question is how to get data with a condition with Firestore? Or how to Find a user by email address?
I think this question will be asked from many programmers.
Thank you,
I'm not showing it in this episode, but the Firestore plugin contains a Query class that can help you with this: github.com/flutter/plugins/blob/master/packages/cloud_firestore/lib/src/query.dart
*GREAT JOB YOU GUYS ARE THE BEST*