mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<pages:BaseContentPage
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Bit.App.Pages.SyncPage"
|
|
xmlns:pages="clr-namespace:Bit.App.Pages"
|
|
xmlns:u="clr-namespace:Bit.App.Utilities"
|
|
x:DataType="pages:SyncPageViewModel"
|
|
Title="{Binding PageTitle}">
|
|
<ContentPage.BindingContext>
|
|
<pages:SyncPageViewModel />
|
|
</ContentPage.BindingContext>
|
|
|
|
<StackLayout Spacing="10"
|
|
Padding="10, 5"
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="FillAndExpand">
|
|
<Button Text="{u:I18n SyncVaultNow}"
|
|
Clicked="Sync_Clicked"></Button>
|
|
<Label StyleClass="text-muted, text-sm" HorizontalTextAlignment="Center">
|
|
<Label.FormattedText>
|
|
<FormattedString>
|
|
<Span Text="{u:I18n LastSync}" />
|
|
<Span Text=" " />
|
|
<Span Text="{Binding LastSync}" />
|
|
</FormattedString>
|
|
</Label.FormattedText>
|
|
</Label>
|
|
</StackLayout>
|
|
|
|
</pages:BaseContentPage>
|