I'm PJ

Results 22 comments of I'm PJ

Pushed to backlog. So I guess its not part of 3.0

@hyorkim11 It doesn't work for edittext but works for buttons.

``` BlobCache.Secure.GetObject(AppConstants.UserKey) .Subscribe(x => { if (x != null && !string.IsNullOrEmpty(x.session_id)) NavigationService.NavigateAsync("/MainPage/Navigation/UserProfile"); }, ex => { NavigationService.NavigateAsync("LoginPage"); }); ``` I'm also seeing this crash. What is the right way to...

@PureWeen Yes I'm using XF and Prism. You were spot on with 3rd pt. This worked `Device.BeginInvokeOnMainThread(() => NavigationService.NavigateAsync("LoginPage"));` I will go through your example to learn more about Rx....

Sounds interesting. Just to clarify, I initiliase everything in App.cs in xamarin forms. So do you mean to move all initialise code to Page1 and keep app.cs lean? I also...

@EmilAlipiev and how do you do that with GetorFetchLatest? This method automatically saves null data to cache overriding last saved healthy data.

@EmilAlipiev Agree. dont use GetAndFetchLatest. and I'm using the alternate approach

I'm just starting to use Akavache and haven't yet found this sccenario, so I'm also curious to know if this is true?