Firebase Offline Capabilities - Firebase
connection state is handled by using the check connection and the connection
checked by using below example i.e.
Stayed Informed - Firebase Tutorial for Android and IOS
I hope you are enjoying with this post! Please share with you friends. Thank you so much!
var
connectRef = firebase.database().ref(".info/connected");
connectRef.on("value",
function(result)
{
if (result.val())
{
console.log(("It
is connected.");
} else {
console.log(("It
is not connected.");
}
});
Stayed Informed - Firebase Tutorial for Android and IOS
I hope you are enjoying with this post! Please share with you friends. Thank you so much!