Hi all. my app will be display a real-time data of body temperature and heart rate from the firebase. I already can display it in the app by using List_Viewer. But I have to always click the list viewer to keep updated the data displayed. Is it any way to make it always display the updated data without have to click the list viewer.
1 Like
You can do this in three different ways
1- Using a loop
In this example, once you click Button1
the loop will start and read the content and display it in Label1
. This will go on until you close the app
2- Using a Timer
Setup the timer as shown and choose the interval
Then add whatever blocks you want in the Fire
coding block.
3- Using Initializes or Changes block
You need to first create cloud variables
Then use the Initializes or Changes
block to detect change
Of course you will need to create the necessary codes and labels for each entry you want to monitor.
Hope this helps
3 Likes
Thanks for your helps @muneer . Really appreciate it.
2 Likes
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.