private async void LeagueInfo_OnUpdateProgress(object sender, LeagueInfo.UpdateEventArgs e)
 {
     await Connection.SetTitleAsync($"{e.Progress}%");
 }
        private async void LeagueInfo_OnUpdateCompleted(object sender, LeagueInfo.UpdateEventArgs e)
        {
            await Connection.SetDefaultImageAsync();

            await Connection.SetTitleAsync(string.Empty);
        }
 private async void LeagueInfo_OnUpdateStarted(object sender, LeagueInfo.UpdateEventArgs e)
 {
     var image = Utilities.GetUpdateImage();
     await Connection.SetImageAsync(image);
 }