Reset flutter cache from firebase
I have a code that takes data from firebase. The problem is that i am caching the data once i am getting it and than checking if i cached it the next time i want to take it so i…
I have a code that takes data from firebase. The problem is that i am caching the data once i am getting it and than checking if i cached it the next time i want to take it so i…
When I change ViewModel variable, Composable Doesn't Update the View and I'm not sure what to do. This is my MainActivity: class MainActivity : ComponentActivity() { companion object { val TAG: String = MainActivity::class.java.simpleName } private val auth by lazy…
Here's a link to the repo for better readability: https://github.com/shaynemcp/reactCounterDemo/runs/7507090095?check_suite_focus=true fail run npm ci & npm run build
I am developing a project with flutter and i want to add crashlytics to my project. Everything else works but flutterfire configure is giving me json error. I look every where for all possible answers but still not solving the…
I have a rewards page that displays certain menu items as rewards that can be purchased using points. I am using a firebase real-time database and have managed to populate the rewards page using a stream builder. Below is what…
I am building a password manager flutter application and I'm using Firestore database to store the data(passwords) entered by the users. I have created 4 different text fields on my Flutter application and on the firestore database, namely : title,…
I am trying to use firebase for my project. When I click on PUB GET, I get this error! "Because firebase_auth >=3.5.0 depends on firebase_auth_platform_interface ^6.4.0 which depends on collection ^1.16.0, firebase_auth >=3.5.0 requires collection ^1.16.0. And because every version…
I have a code like this: name = FirebaseFirestore.instance.collection("users").doc("${FirebaseAuth.instance.currentUser?.uid}").get().then((value) => value.data()!["name"]).toString(); I get the following output from this code: Instance of 'Future <dynamic>' How can I resolve this error? Thanks for help.
I wrote a program that saves a series of data in a file and uploads it to Firebase Storage. I want it to replace the previous data with new data so that when it gets the data, it saves it…
I'm reading a user list from firebase and sending it to ListTile, but the incoming data comes in alphabetical order. I want this data to come randomly. Does anyone know about this? FutureBuilder( future: FirebaseFirestore.instance .collection('users') .get(), builder: (context, snapshot)…