private void checkAuth()
 {
     base.OnAppearing();
     if (_storage.HasKey(StorageKeys.ACCESS_TOKEN.Value))
     {
         _navi.ShowProfile();
     }
 }
 private async void Logout()
 {
     _authService.LogOut();
     await _navigationService.ShowProfile();
 }