mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
New grid layout structure for cipher view cell
This commit is contained in:
parent
3475d39f37
commit
9d3165dc65
3 changed files with 75 additions and 59 deletions
|
@ -4,7 +4,9 @@
|
||||||
x:Class="Bit.App.Controls.CipherViewCell"
|
x:Class="Bit.App.Controls.CipherViewCell"
|
||||||
xmlns:controls="clr-namespace:Bit.App.Controls"
|
xmlns:controls="clr-namespace:Bit.App.Controls"
|
||||||
xmlns:ff="clr-namespace:FFImageLoading.Forms;assembly=FFImageLoading.Forms">
|
xmlns:ff="clr-namespace:FFImageLoading.Forms;assembly=FFImageLoading.Forms">
|
||||||
<Grid x:Name="_grid"
|
|
||||||
|
<Grid
|
||||||
|
x:Name="_grid"
|
||||||
StyleClass="list-row, list-row-platform"
|
StyleClass="list-row, list-row-platform"
|
||||||
RowSpacing="0"
|
RowSpacing="0"
|
||||||
ColumnSpacing="0"
|
ColumnSpacing="0"
|
||||||
|
@ -15,28 +17,27 @@
|
||||||
</Grid.BindingContext>
|
</Grid.BindingContext>
|
||||||
|
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="*" />
|
<RowDefinition Height="Auto" />
|
||||||
<RowDefinition Height="*" />
|
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="40" />
|
<ColumnDefinition Width="40" />
|
||||||
<ColumnDefinition Width="Auto" />
|
|
||||||
<ColumnDefinition Width="Auto" />
|
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="*" />
|
||||||
<ColumnDefinition Width="60" />
|
<ColumnDefinition Width="60" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
<controls:FaLabel x:Name="_icon"
|
<controls:FaLabel
|
||||||
Grid.Column="0"
|
x:Name="_icon"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.RowSpan="2"
|
Grid.Column="0"
|
||||||
HorizontalOptions="Center"
|
HorizontalOptions="Center"
|
||||||
VerticalOptions="Center"
|
VerticalOptions="Center"
|
||||||
StyleClass="list-icon, list-icon-platform" />
|
StyleClass="list-icon, list-icon-platform" />
|
||||||
<ff:CachedImage x:Name="_image"
|
|
||||||
Grid.Column="0"
|
<ff:CachedImage
|
||||||
|
x:Name="_image"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.RowSpan="2"
|
Grid.Column="0"
|
||||||
BitmapOptimizations="True"
|
BitmapOptimizations="True"
|
||||||
ErrorPlaceholder="login.png"
|
ErrorPlaceholder="login.png"
|
||||||
HorizontalOptions="Center"
|
HorizontalOptions="Center"
|
||||||
|
@ -44,20 +45,34 @@
|
||||||
WidthRequest="22"
|
WidthRequest="22"
|
||||||
HeightRequest="22"
|
HeightRequest="22"
|
||||||
IsVisible="False"/>
|
IsVisible="False"/>
|
||||||
<Label LineBreakMode="TailTruncation"
|
|
||||||
Grid.Column="1"
|
<Grid RowSpacing="0" ColumnSpacing="0" Grid.Row="0" Grid.Column="1" VerticalOptions="Center">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
<RowDefinition Height="Auto" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
<ColumnDefinition Width="Auto" />
|
||||||
|
<ColumnDefinition Width="*" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
LineBreakMode="TailTruncation"
|
||||||
|
Grid.Column="0"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
StyleClass="list-title, list-title-platform"
|
StyleClass="list-title, list-title-platform"
|
||||||
Text="{Binding Cipher.Name, Mode=OneWay}" />
|
Text="{Binding Cipher.Name, Mode=OneWay}" />
|
||||||
<Label LineBreakMode="TailTruncation"
|
<Label
|
||||||
Grid.Column="1"
|
LineBreakMode="TailTruncation"
|
||||||
|
Grid.Column="0"
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
Grid.ColumnSpan="3"
|
Grid.ColumnSpan="3"
|
||||||
StyleClass="list-subtitle, list-subtitle-platform"
|
StyleClass="list-subtitle, list-subtitle-platform"
|
||||||
Text="{Binding Cipher.SubTitle, Mode=OneWay}" />
|
Text="{Binding Cipher.SubTitle, Mode=OneWay}" />
|
||||||
|
|
||||||
<controls:FaLabel
|
<controls:FaLabel
|
||||||
Grid.Column="2"
|
Grid.Column="1"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
HorizontalOptions="Start"
|
HorizontalOptions="Start"
|
||||||
VerticalOptions="Center"
|
VerticalOptions="Center"
|
||||||
|
@ -66,7 +81,7 @@
|
||||||
Text=""
|
Text=""
|
||||||
IsVisible="{Binding Cipher.Shared, Mode=OneWay}" />
|
IsVisible="{Binding Cipher.Shared, Mode=OneWay}" />
|
||||||
<controls:FaLabel
|
<controls:FaLabel
|
||||||
Grid.Column="3"
|
Grid.Column="2"
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
HorizontalOptions="Start"
|
HorizontalOptions="Start"
|
||||||
VerticalOptions="Center"
|
VerticalOptions="Center"
|
||||||
|
@ -74,13 +89,18 @@
|
||||||
Margin="5, 0, 0, 0"
|
Margin="5, 0, 0, 0"
|
||||||
Text=""
|
Text=""
|
||||||
IsVisible="{Binding Cipher.HasAttachments, Mode=OneWay}" />
|
IsVisible="{Binding Cipher.HasAttachments, Mode=OneWay}" />
|
||||||
|
</Grid>
|
||||||
|
|
||||||
<controls:MiButton
|
<controls:MiButton
|
||||||
|
BackgroundColor="Green"
|
||||||
|
Grid.Row="0"
|
||||||
|
Grid.Column="2"
|
||||||
Text=""
|
Text=""
|
||||||
StyleClass="list-row-button, list-row-button-platform, btn-disabled"
|
StyleClass="list-row-button, list-row-button-platform, btn-disabled"
|
||||||
Clicked="ImageButton_Clicked"
|
Clicked="MoreButton_Clicked"
|
||||||
Grid.Column="4"
|
VerticalOptions="CenterAndExpand"
|
||||||
Grid.Row="0"
|
HorizontalOptions="EndAndExpand" />
|
||||||
Grid.RowSpan="2" />
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
</ViewCell>
|
</ViewCell>
|
||||||
|
|
|
@ -181,7 +181,7 @@ namespace Bit.App.Controls
|
||||||
return new Tuple<string, string>(icon, image);
|
return new Tuple<string, string>(icon, image);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ImageButton_Clicked(object sender, EventArgs e)
|
private void MoreButton_Clicked(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
ButtonCommand?.Execute(Cipher);
|
ButtonCommand?.Execute(Cipher);
|
||||||
}
|
}
|
||||||
|
|
|
@ -236,10 +236,6 @@
|
||||||
Value="0" />
|
Value="0" />
|
||||||
<Setter Property="TextColor"
|
<Setter Property="TextColor"
|
||||||
Value="{StaticResource ButtonColor}" />
|
Value="{StaticResource ButtonColor}" />
|
||||||
<Setter Property="HorizontalOptions"
|
|
||||||
Value="End" />
|
|
||||||
<Setter Property="VerticalOptions"
|
|
||||||
Value="CenterAndExpand" />
|
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
<!-- Box -->
|
<!-- Box -->
|
||||||
|
|
Loading…
Reference in a new issue