Change-Id: I18e446e82043e032efa9da565b1d62e620b9dc88
Signed-off-by: tarunkumarmahay1999 <tarun.mahay@samsung.com>
{
wallpaperView?.SaveButton.Hide();
}
- wallpaperView.ResourceUrl = url;
+ if(wallpaperView != null)
+ {
+ wallpaperView.ResourceUrl = url;
+ }
}
private void OnAlbumContentUpdated()
if(index < wallpaperCount)
{
View wallpaper = wallpaperListView.GetChildAt(index);
- wallpaper.BindingContext = item;
+ if(wallpaper != null)
+ {
+ wallpaper.BindingContext = item;
+ }
}
else
{