rlamasb / Firebase.Xamarin

Light weight wrapper for Firebase Realtime Database REST API.
MIT License
149 stars 39 forks source link

Offline DataBase #33

Open felipeoliveirar opened 6 years ago

felipeoliveirar commented 6 years ago

How I use the offline database control? is able to you include some readme about that? I did the code bellow to include a Class Account:

try{

var item = await firebase.Child("users").PostAsync(user); list_users.Add(user); await LoadAdpterList(); }catch(Exception e){

list_users.Add(user); await LoadNovo(); } I made the following test: include an user with internet(ok) disabled internet include an user without internet

but the user that was includeded on list didn't sync again. Even if I include another user. How i do it?