-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDocumentDetailPage.xaml
More file actions
18 lines (16 loc) · 1004 Bytes
/
DocumentDetailPage.xaml
File metadata and controls
18 lines (16 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="EntglDb.Test.Maui.DocumentDetailPage"
Title="Document Details">
<ScrollView>
<VerticalStackLayout Padding="15" Spacing="15">
<Label Text="Key" FontAttributes="Bold" TextColor="Gray" FontSize="Small"/>
<Label Text="{Binding Key}" FontSize="Body" />
<Label Text="Timestamp (HLC)" FontAttributes="Bold" TextColor="Gray" FontSize="Small"/>
<Label Text="{Binding Timestamp}" FontSize="Body" />
<Label Text="Payload (JSON)" FontAttributes="Bold" TextColor="Gray" FontSize="Small"/>
<Editor Text="{Binding Payload}" IsReadOnly="True" AutoSize="TextChanges" BackgroundColor="{AppThemeBinding Light=#f5f5f5, Dark=#333}" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>