Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Last active January 20, 2022 13:50
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 TBertuzzi/dd10c49b3f1e49725e9870910b5d8d5e to your computer and use it in GitHub Desktop.
Save TBertuzzi/dd10c49b3f1e49725e9870910b5d8d5e to your computer and use it in GitHub Desktop.
AiForms
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
Padding="0,60,0,0"
x:Class="XamarinFormsAiFormsDialogs.MainPage">
<StackLayout>
<Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
<Label Text="Vamos utilizar o AiForms.Dialogs" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
</Frame>
<Button Text="Loading" Clicked="btnLoading_Clicked"></Button>
<Button Text="Toast" Clicked="btnToast_Clicked"></Button>
<Button Text="Dialog" Clicked="btnDialog_Clicked"></Button>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment