Skip to content

Instantly share code, notes, and snippets.

@TBertuzzi
Created November 3, 2020 13:34
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/5f8b2c22d7b6b8b3e54cd8f66ce7dadc to your computer and use it in GitHub Desktop.
Save TBertuzzi/5f8b2c22d7b6b8b3e54cd8f66ce7dadc to your computer and use it in GitHub Desktop.
Share
<?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="XamarinShareExemplo.MainPage">
<StackLayout>
<Label Text="Copartilhar Informações" FontAttributes="Bold" FontSize="Large"
HorizontalTextAlignment="Center" ></Label>
<Entry x:Name="entryTexto" Placeholder="Digite um Texto para Compartilhar" ></Entry>
<Button x:Name="btnShareText" Text="Compartilhar texto" Clicked="btnShareText_Clicked"/>
<Entry x:Name="entryUrl" Placeholder="Digite uma url para compartilhar" ></Entry>
<Button x:Name="btnShareUrl" Text="Compartilhar URL" Clicked="btnShareUrl_Clicked"/>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment