mirror of
https://github.com/bitwarden/mobile
synced 2026-01-04 09:33:16 +00:00
folder icon added to header view. custom bordering. extended text cell for android background color.
This commit is contained in:
17
src/App/Controls/ExtendedTextCell.cs
Normal file
17
src/App/Controls/ExtendedTextCell.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using Xamarin.Forms;
|
||||
|
||||
namespace Bit.App.Controls
|
||||
{
|
||||
public class ExtendedTextCell : TextCell
|
||||
{
|
||||
public static readonly BindableProperty BackgroundColorProperty =
|
||||
BindableProperty.Create(nameof(BackgroundColor), typeof(Color), typeof(ExtendedTextCell), Color.Transparent);
|
||||
|
||||
public Color BackgroundColor
|
||||
{
|
||||
get { return (Color)GetValue(BackgroundColorProperty); }
|
||||
set { SetValue(BackgroundColorProperty, value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user