mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
31 lines
929 B
Text
31 lines
929 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.TwoFactorPage"
|
||
|
xmlns:pages="clr-namespace:Bit.App.Pages"
|
||
|
xmlns:controls="clr-namespace:Bit.App.Controls"
|
||
|
xmlns:u="clr-namespace:Bit.App.Utilities"
|
||
|
x:DataType="pages:TwoFactorPageViewModel"
|
||
|
Title="{Binding PageTitle}">
|
||
|
|
||
|
<ContentPage.BindingContext>
|
||
|
<pages:TwoFactorPageViewModel />
|
||
|
</ContentPage.BindingContext>
|
||
|
|
||
|
<ContentPage.Resources>
|
||
|
<ResourceDictionary>
|
||
|
<u:InverseBoolConverter x:Key="inverseBool" />
|
||
|
</ResourceDictionary>
|
||
|
</ContentPage.Resources>
|
||
|
|
||
|
<ContentPage.ToolbarItems>
|
||
|
<ToolbarItem Text="{u:I18n Continue}" Clicked="Continue_Clicked" />
|
||
|
</ContentPage.ToolbarItems>
|
||
|
|
||
|
<ScrollView>
|
||
|
|
||
|
</ScrollView>
|
||
|
|
||
|
</pages:BaseContentPage>
|