1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-26 10:36:21 +02:00
bitwarden-mobile/src/iOS.Core/Controllers/ExtendedUITableViewCell.cs

28 lines
754 B
C#

using Bit.iOS.Core.Utilities;
using UIKit;
namespace Bit.iOS.Core.Controllers
{
public class ExtendedUITableViewCell : UITableViewCell
{
public ExtendedUITableViewCell()
{
BackgroundColor = ThemeHelpers.BackgroundColor;
if (!ThemeHelpers.LightTheme)
{
SelectionStyle = UITableViewCellSelectionStyle.None;
}
}
public ExtendedUITableViewCell(UITableViewCellStyle style, string reusedId)
: base(style, reusedId)
{
BackgroundColor = ThemeHelpers.BackgroundColor;
if (!ThemeHelpers.LightTheme)
{
SelectionStyle = UITableViewCellSelectionStyle.None;
}
}
}
}