mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
54 lines
1.6 KiB
C#
54 lines
1.6 KiB
C#
|
using FFImageLoading.Forms;
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Bit.App.Controls
|
|||
|
{
|
|||
|
public class LabeledRightDetailCell : ExtendedViewCell
|
|||
|
{
|
|||
|
public LabeledRightDetailCell()
|
|||
|
{
|
|||
|
Label = new Label
|
|||
|
{
|
|||
|
LineBreakMode = LineBreakMode.TailTruncation,
|
|||
|
FontSize = Device.GetNamedSize(NamedSize.Medium, typeof(Label)),
|
|||
|
HorizontalOptions = LayoutOptions.StartAndExpand,
|
|||
|
};
|
|||
|
|
|||
|
Detail = new Label
|
|||
|
{
|
|||
|
FontSize = Device.GetNamedSize(NamedSize.Small, typeof(Label)),
|
|||
|
Style = (Style)Application.Current.Resources["text-muted"],
|
|||
|
HorizontalOptions = LayoutOptions.End,
|
|||
|
VerticalOptions = LayoutOptions.Center
|
|||
|
};
|
|||
|
|
|||
|
Icon = new CachedImage
|
|||
|
{
|
|||
|
WidthRequest = 16,
|
|||
|
HeightRequest = 16,
|
|||
|
HorizontalOptions = LayoutOptions.End,
|
|||
|
VerticalOptions = LayoutOptions.Center,
|
|||
|
Margin = new Thickness(5, 0, 0, 0)
|
|||
|
};
|
|||
|
|
|||
|
var stackLayout = new StackLayout
|
|||
|
{
|
|||
|
Orientation = StackOrientation.Horizontal,
|
|||
|
Padding = new Thickness(15, 10),
|
|||
|
Children = { Label, Detail, Icon }
|
|||
|
};
|
|||
|
|
|||
|
if(Device.RuntimePlatform == Device.Android)
|
|||
|
{
|
|||
|
Label.TextColor = Color.Black;
|
|||
|
}
|
|||
|
|
|||
|
View = stackLayout;
|
|||
|
}
|
|||
|
|
|||
|
public Label Label { get; private set; }
|
|||
|
public Label Detail { get; private set; }
|
|||
|
public CachedImage Icon { get; private set; }
|
|||
|
}
|
|||
|
}
|