mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
21 lines
720 B
Text
21 lines
720 B
Text
|
<?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:controls="clr-namespace:Bit.App.Controls"
|
||
|
xmlns:u="clr-namespace:Bit.App.Utilities"
|
||
|
x:DataType="pages:SyncPageViewModel"
|
||
|
Title="{Binding PageTitle}">
|
||
|
<ContentPage.BindingContext>
|
||
|
<pages:SyncPageViewModel />
|
||
|
</ContentPage.BindingContext>
|
||
|
|
||
|
<StackLayout Spacing="0" Padding="10, 5">
|
||
|
<Button Text="{u:I18n SyncVaultNow}"
|
||
|
Clicked="Sync_Clicked"></Button>
|
||
|
</StackLayout>
|
||
|
|
||
|
</pages:BaseContentPage>
|