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