Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created January 20, 2022 14:16
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/81c48d8570b9aba16716924050558c09 to your computer and use it in GitHub Desktop.
Save TBertuzzi/81c48d8570b9aba16716924050558c09 to your computer and use it in GitHub Desktop.
AiForms
<?xml version="1.0" encoding="UTF-8"?>
<dialog:DialogView xmlns:dialog="clr-namespace:AiForms.Dialogs.Abstractions;assembly=AiForms.Dialogs"
xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="XamarinFormsAiFormsDialogs.MinhaDialogView">
<ContentView BackgroundColor="#2196F3" x:Name="container" Padding="12">
<StackLayout WidthRequest="200" BackgroundColor="White" >
<Label Text="Minha Dialog!" />
<Button Text="Cancelar" Clicked="btnCancel_Clicked"/>
<Button Text="Ok" Clicked="btnOK_Clicked" />
</StackLayout>
</ContentView>
</dialog:DialogView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment