skip to Main Content

I am trying to develop a mobile application using flutter and I want to make a simple admin dashboard for this application. I want to add some tables from the Firebase Analytics Dashboard to this admin dashboard, but I couldn’t find a way to do it.

Is there any way to do this?

2

Answers


  1. I suggest checking if firebase has an API to read from your console and reflect data. then you have to configure your backend to pull data continually or whenever you open admin page.

    Login or Signup to reply.
  2. Currently, Firebase has no API that would fetch analytics data. However, you can download Analytics report as a CSV file or export it to Google Sheets that you could use to supply your data for your admin page.

    To export your Analytics report, just go on the Report page you want to export (e.g. Analytics Dashboard), select the share button and click on download file and select your export format.

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search