Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created April 20, 2019 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juucustodio/cf5a30c6fe65262b221017dc0deb041f to your computer and use it in GitHub Desktop.
Save juucustodio/cf5a30c6fe65262b221017dc0deb041f to your computer and use it in GitHub Desktop.
Example of how to implement Biometric Authentication in Xamarin.Forms applications - http://julianocustodio.com/autenticacao-biometrica
<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:BiometricDemo"
x:Class="BiometricDemo.MainPage" Padding="10">
<StackLayout VerticalOptions="Center">
<Button Clicked="Autenticar" Text="Autenticar" BackgroundColor="#F3F3F3"/>
<Label x:Name="Resultado" Text="" HorizontalTextAlignment="Center"/>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment