DetailsPage.xaml 756 B

1234567891011121314151617181920
  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="{Binding Name}"
  6. x:Name="ThePage">
  7. <ScrollView Padding="10">
  8. <StackLayout Spacing="10">
  9. <Image Source="{Binding Avatar}" HeightRequest="200" WidthRequest="200"/>
  10. <Label Text="{Binding Name}" FontSize="24"/>
  11. <Label Text="{Binding Title}" TextColor="Purple"/>
  12. <Label Text="{Binding Description}"/>
  13. <Button Text="Speak" x:Name="ButtonSpeak"/>
  14. <Button Text="Go to Website" x:Name="ButtonWebsite"/>
  15. </StackLayout>
  16. </ScrollView>
  17. </ContentPage>