ranking UI adjustment
This commit is contained in:
parent
2015389cb5
commit
74e5d8c281
@ -14,23 +14,24 @@
|
|||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="{OnPlatform Android=Auto}"/>
|
<ColumnDefinition Width="{OnPlatform Android=Auto}"/>
|
||||||
<ColumnDefinition Width="Auto"/>
|
<ColumnDefinition Width="Auto"/>
|
||||||
<ColumnDefinition Width="Auto"/>
|
|
||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<Label Grid.Column="1" Text="{Binding Title}"
|
<StackLayout Grid.Column="1" Orientation="Horizontal" Spacing="6">
|
||||||
TextColor="{DynamicResource TextColor}"
|
<StackLayout.GestureRecognizers>
|
||||||
FontSize="{OnPlatform Android=18}"
|
|
||||||
VerticalTextAlignment="Center" FontAttributes="Bold">
|
|
||||||
<Label.GestureRecognizers>
|
|
||||||
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped"/>
|
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped"/>
|
||||||
</Label.GestureRecognizers>
|
</StackLayout.GestureRecognizers>
|
||||||
</Label>
|
<Label Text="{Binding Title}"
|
||||||
<Label Grid.Column="2" x:Name="labelCaret"
|
TextColor="{DynamicResource TextColor}"
|
||||||
Text="{DynamicResource IconCaretDown}"
|
FontSize="{OnPlatform Android=18}"
|
||||||
TextColor="{DynamicResource TextColor}"
|
LineBreakMode="HeadTruncation"
|
||||||
FontFamily="{DynamicResource IconSolidFontFamily}"
|
VerticalTextAlignment="Center" FontAttributes="Bold"/>
|
||||||
FontSize="Small"
|
<Label x:Name="labelCaret"
|
||||||
VerticalTextAlignment="Center"/>
|
Text="{DynamicResource IconCaretDown}"
|
||||||
|
TextColor="{DynamicResource TextColor}"
|
||||||
|
FontFamily="{DynamicResource IconSolidFontFamily}"
|
||||||
|
FontSize="Small"
|
||||||
|
VerticalTextAlignment="Center"/>
|
||||||
|
</StackLayout>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Shell.TitleView>
|
</Shell.TitleView>
|
||||||
<ContentPage.ToolbarItems>
|
<ContentPage.ToolbarItems>
|
||||||
|
@ -151,7 +151,8 @@ namespace Pixiview.Illust
|
|||||||
int.Parse(date.Substring(4, 2)),
|
int.Parse(date.Substring(4, 2)),
|
||||||
int.Parse(date.Substring(6, 2)));
|
int.Parse(date.Substring(6, 2)));
|
||||||
SelectedDate = now;
|
SelectedDate = now;
|
||||||
date = now.ToShortDateString();
|
//date = now.ToShortDateString();
|
||||||
|
date = now.ToString("yyyy-MM-dd");
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
<ToolbarItem Order="Primary" Clicked="More_Clicked"
|
<ToolbarItem Order="Primary" Clicked="More_Clicked"
|
||||||
IconImageSource="{DynamicResource FontIconMore}"/>
|
IconImageSource="{DynamicResource FontIconMore}"/>
|
||||||
</ContentPage.ToolbarItems>
|
</ContentPage.ToolbarItems>
|
||||||
<Grid Padding="{Binding PageTopMargin}">
|
<Grid Padding="{Binding PageTopMargin}" RowSpacing="0">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition/>
|
<RowDefinition/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user