Questions tagged [firebaseui]

FirebaseUI is a set of binding libraries that simplifies developing applications for iOS, Android, Web and Flutter with Firebase.

FirebaseUI libraries are available for both Android, iOS, Web and Flutter and offers these features for all platforms:

Related tags

1862 questions
6
votes
3 answers

Firebase RecyclerView Displays One Item

In my database, I have entries with multiple songs. This is what it the DB looks like, and what is showing in the display: "DjSunGazer" : { "song" : { "-LmHrkYkU1qD2GND9wY2" : "Blaya - Cash", "-LmHrlalIVUStU6nqBJI" : "Blaya -…
beastlyCoder
  • 2,349
  • 4
  • 25
  • 52
6
votes
1 answer

FirebaseUI cancel button click callback

I'm trying to implement Firebase authentication. With the provided UI, I can't figure out what method is called when the Cancel button is clicked. It don't seem to be documented, https://github.com/firebase/firebaseui-web.
Pratheep
  • 936
  • 1
  • 7
  • 17
6
votes
1 answer

Firestore chat app using Firebase-UI (Android)

I am trying to create a chat using the Firebase-UI library for Cloud Firestore. This github repository contains the relevant code which I am using. The problem comes with the order of the query. See that the query is specified as: Query sChatQuery =…
b-fg
  • 3,959
  • 2
  • 28
  • 44
6
votes
4 answers

firebaseui signInSuccess redirect in callback

using ReactJS web, and FirebaseUI Auth. I am attempting to create a signInSuccessUrl that includes the uid of the signed in user: /users/${userId}. my assumption is that this needs to be defined in the call back, but I can't seem to make it…
humont
  • 63
  • 1
  • 6
6
votes
1 answer

Android FirebaseUI Auth - How to reauthenticate?

Related Question: How does Firebase Auth UI deal with reauthentication? (This question is for iOS, and is unsolved) I would like to allow a user to update their email/password/etc with FirebaseUI on Android. According to the guide, the "drop-in" UI…
Evelyn
  • 2,588
  • 3
  • 22
  • 47
6
votes
3 answers

Android Using FirebaseUI with FirebaseListOptions to populate a ListView doesn't call populateView

I'm using the following dependencies in build.gradle: compile 'com.google.firebase:firebase-database:11.4.2' compile 'com.firebaseui:firebase-ui-database:3.1.0' compile 'com.firebaseui:firebase-ui-auth:3.1.0' My goal is to populate a Listview with…
Hans
  • 523
  • 1
  • 5
  • 16
6
votes
1 answer

Running Firebase-Auth + Firebase-UI alongside Crashlytics

I followed the steps on the Firebase Auth UI page in order to use the Firebase auth drop-in solution in my Android app with the phone number verification provider. I'm using Crashlytics in my project and I'm migrating from Digits to Firebase, so…
6
votes
2 answers

Getting error in adding dependencies for firebase-ui-auth

Since it is required to use FirebaseUI Version as per the Firebase/Play Services Version, I am adding: compile 'com.google.firebase:firebase-core:10.2.1' compile 'com.google.firebase:firebase-auth:10.2.1' compile…
6
votes
2 answers

Firebase UI Auth Provider iOS Swift Example

I am starting a new iOS Swift application and want to use FirebaseUI Auth. Here is the link to the docs where it talks about it under Drop-in authentication solution Firebase Auth. The FirebaseUI Auth for Android was very simple and easy. It appears…
Scott B
  • 1,478
  • 2
  • 16
  • 26
6
votes
2 answers

Android Firebase listener inside onBindViewHolder of recyclerview

I have an Android chat app, which stores all messages both in local SQLite DB and in the Firebase realtime DB. When displaying the messages in RecyclerView, I query them from my local DB (as there are some additional data stored locally, that is not…
6
votes
2 answers

iOS firebase: FIRAuthUIDelegate.authUI not being called

I am trying to launch google login from AppDelegate.swift and then launch my app's main screen upon login success. I am able to show the google login button as shown above the user is sent to google to sign in the user is sent back to original…
6
votes
1 answer

How Can I Add a Background Image for FirebaseUI Login for iOS?

I'd like to be able to place a background image behind the three sign-in buttons (for Google, Facebook, and Email) of the FirebaseUI login screen. FirebaseUI login is a drop-in authentication solution for iOS, Android, and Web. I'm having trouble…
Brad Caldwell
  • 344
  • 2
  • 14
6
votes
2 answers

How to update the query reference of a firebase recycler adapter?

I have a RecyclerView bound to a FirebaseRecyclerAdapter. I need to update the data displayed based on a value set by the user using a spinner. Something like this: FirebaseDatabase db = FirebaseDatabase.getInstance(); DatabaseReference ref =…
Peralta
  • 180
  • 1
  • 12
6
votes
5 answers

FirebaseRecyclerAdapter - how to change database query after creation

Problem I have a list of items that are displayed in android through a FirebaseRecyclerAdapter. I create this adapter with a database reference on all the list of items (let's say "posts"). The post displays also the category and if the user click…
DavideN
  • 253
  • 2
  • 11
6
votes
1 answer

Is there an existing method that listens for a RecyclerView item change?

Let's say I have a RecyclerView, and when it loads data from the databse, I want to do something. I'd imagine it like this: recyclerView.setOnUpdateListener(new OnUpdateListener() { @Override public void onChanged() { …