14 lines
571 B
XML
14 lines
571 B
XML
<?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="MyMobileApp.Views.ItemDetailPage"
|
|
Title="{Binding Title}">
|
|
|
|
<StackLayout Spacing="20" Padding="15">
|
|
<Label Text="Text:" FontSize="Medium" />
|
|
<Label Text="{Binding Text}" FontSize="Small"/>
|
|
<Label Text="Description:" FontSize="Medium" />
|
|
<Label Text="{Binding Description}" FontSize="Small"/>
|
|
</StackLayout>
|
|
|
|
</ContentPage> |