firebaseapp-inventor

How to display firebase data in a list in MIT App Inventor?


I am making an app in MIT App Inventor wherein I need to let users make new entries into the database and there should be a screen in my app where I can display all the entries in a list. You can think of this as a feed mechanism similar to the feed systems of any social media app.

Sample data:

FirebaseDatabase
--id89677687
  --name: randomname1
  --randomdata: randomdata1
--id89748687
  --name: randomname2
  --randomdata: randomdata2
--id89836587
  --name: randomname3
  --randomdata: randomdata3

According to this data, I would want to display all the id fields and their subfields in the form of a list. Any help would be appreciated!!


Solution

  • Solved: I found inbuilt elements in the MIT App Inventor and also found multiple tutorials on fixing this issue.