Bottom Overflowed in ListTile – Flutter
I have created a ListTile to return all my documents from my collection in Firestore. But I want to put "R$" before the number, not above it: Is there a way to do it? Also, I would like to know…
I have created a ListTile to return all my documents from my collection in Firestore. But I want to put "R$" before the number, not above it: Is there a way to do it? Also, I would like to know…
I have a collection in firebase called "community" and "users". All user records have a field "joinedCommunity" (a list of all joined communities). I'm trying to figure a code that when a community is deleted, all user records are updated…
I am desperately trying to figure out how to initializeApp with Flutter (not React Native). I know about the functions to use, but I can not find the firebaseConfig I need to pass into the function. And no matter what…
i work with jetpack compose and kotlin, when i add new dependency (i don't know which one cause error) after i sync dependency and run app, error like below, i don't know why What went wrong: Execution failed for task…
in my project i am using firebase auth for user login and also text recognition from google_ml_kit but when i run my application in ios then its giving error while installing pod file because of conflict with firebase auth package…
Simplified code that I am using: import { useState, useEffect, useContext } from 'react' import { useRouter } from 'next/router' import { firestore } from './firebase-config' import { getDoc, doc } from 'firebase/firestore' export default function HomePage() { const router…
I developed an app with Flutter and Firebase that uses the phone authentication feature for Android and IOS. Everything works as expected except that the recaptcha is showing for Android. To solve this, it says in the documentation that we…
I'm pretty new to this and I'm a bit stumped. Trying to have various background colours on gridView items but all the ways I know of don't seem to work, because the data is coming from firebase. var colors =…
I can successfully login with the below code, however I don't believe react is receiving any auth data back form google to update the current user in react. I know I am missing something here but I don't know what.…
I want to add colection to Firestore database like this image: here I want to add a symbol in Arraylist every time the function is called. fun addsymbol(){ val arrayList= arrayListOf<String>() arrayList.add(Coin.Coin_Info?.symbol!!) val postHashMap = hashMapOf<String, Any>() postHashMap.put("symbols",arrayList) Firestore.collection("Users").document("User1").set(postHashMap, SetOptions.merge())…