DetailsPage.xaml 707 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="DevDaysSpeakers.View.DetailsPage"
  5. Title="Details">
  6. <ScrollView Padding="10">
  7. <StackLayout Spacing="10">
  8. <Image Source="{Binding Avatar}" HeightRequest="200" WidthRequest="200"/>
  9. <Label Text="{Binding Name}" FontSize="24"/>
  10. <Label Text="{Binding Title}" TextColor="Purple"/>
  11. <Label Text="{Binding Description}"/>
  12. <Button Text="Speak" x:Name="ButtonSpeak"/>
  13. <Button Text="Go to Website" x:Name="ButtonWebsite"/>
  14. </StackLayout>
  15. </ScrollView>
  16. </ContentPage>