async void Configure(ListCell cell, ListInfo listInfo)
		{
			// Show an empty string as the text since it may need to load.
			cell.Label.Text = string.Empty;
			cell.Label.Font = UIFont.PreferredBody;
			cell.ListColorView.BackgroundColor = UIColor.Clear;
			cell.BackgroundColor = UIColor.Cyan;

			await listInfo.FetchInfoAsync ();

			cell.Label.Text = listInfo.Name;
			cell.ListColorView.BackgroundColor = AppColors.ColorFrom (listInfo.Color.Value);
		}