mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 13:23:39 +00:00
23 lines
859 B
XML
23 lines
859 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ViewCell xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Bit.App.Controls.CipherViewCell"
|
|
xmlns:controls="clr-namespace:Bit.App.Controls">
|
|
<ViewCell.View>
|
|
|
|
<StackLayout x:Name="_layout"
|
|
x:DataType="controls:CipherViewCellViewModel"
|
|
StyleClass="list-row">
|
|
<StackLayout.BindingContext>
|
|
<controls:CipherViewCellViewModel />
|
|
</StackLayout.BindingContext>
|
|
|
|
<Label Text="{Binding Cipher.Name, Mode=OneWay}"
|
|
StyleClass="list-title" />
|
|
<Label Text="{Binding Cipher.SubTitle, Mode=OneWay}"
|
|
StyleClass="list-subtitle" />
|
|
</StackLayout>
|
|
|
|
</ViewCell.View>
|
|
</ViewCell>
|