Hello everyone, This extension have some extra features that can help you to use firebase in a more easy way. This is a simple extension that tell you about your database changes(Not only with one block as Firebase DB component do). It have multiple blocks for identifying multiple events. You can use this extension to work with firebase dynamically.
The “TagRemoved” event is fired even if the internet connection is down when using the native firebase “Clear Tag” block. The tag in the database is not removed (since the device is offline), but in the app the event is fired anyway.
Is there a way to fix this? and that the “TagRemoved” event is fired when the tag has really been removed from the firebase database?
My blocks: (Test with the Internet connection disabled on the device)
Firebase works offline when app loses its internet connection. Clear tag and Tag Removed is working for offline data that has been stored to your disk by firebase.
Read here about Firebase Realtime database offline capabilities :
And is there a way to disable that (offline capabilities)? since it doesn’t make sense for the event to fire if the tag hasn’t really been removed.
my chat app is based on group chat between two district employees. There are 30 districts and user chooses to transfer from one district to another. so user provides his current district and the district he wants to go. another user also provides the required data.
Suppose 1st user want to go from District A to B. So the app creates a project bucket A-B in firebase . 2nd User wants to go from District B to A. again the app creates a project bucket B-A in firebase.
So the problem is 1st user and 2nd user need to talk to each other. So the 2nd user must go to the project bucket A-B to chat with 1st user. So how do i do that?