mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-05-02 15:22:49 +08:00
14 lines
574 B
XML
14 lines
574 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="xamarinFormApp.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> |