mirror of
https://github.com/bitwarden/mobile.git
synced 2025-01-07 18:58:35 +01:00
26 lines
717 B
C#
26 lines
717 B
C#
|
using Bit.App.Controls;
|
|||
|
using Bit.iOS.Controls;
|
|||
|
using UIKit;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Platform.iOS;
|
|||
|
|
|||
|
[assembly: ExportRenderer(typeof(ExtendedViewCell), typeof(ExtendedViewCellRenderer))]
|
|||
|
namespace Bit.iOS.Controls
|
|||
|
{
|
|||
|
public class ExtendedViewCellRenderer : ViewCellRenderer
|
|||
|
{
|
|||
|
public override UITableViewCell GetCell(Cell item, UITableViewCell reusableCell, UITableView tv)
|
|||
|
{
|
|||
|
var extendedCell = (ExtendedViewCell)item;
|
|||
|
var cell = base.GetCell(item, reusableCell, tv);
|
|||
|
|
|||
|
if(cell != null)
|
|||
|
{
|
|||
|
cell.BackgroundColor = extendedCell.BackgroundColor.ToUIColor();
|
|||
|
}
|
|||
|
|
|||
|
return cell;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|