Added MultilineTextEntryView

This commit is contained in:
TheXamlGuy
2024-06-08 21:24:59 +01:00
parent 9a664b583b
commit f64453232b
30 changed files with 185 additions and 96 deletions
+8 -3
View File
@@ -157,7 +157,7 @@ public record ItemConfiguration
{
Entries = new List<ItemEntryConfiguration>
{
new NumberEntryConfiguration
new MultilineTextEntryConfiguration
{
Label = "Notes"
}
@@ -170,19 +170,24 @@ public record ItemConfiguration
{
Sections = new List<ItemSectionConfiguration>
{
new()
new ()
{
Entries = new List<ItemEntryConfiguration>
{
new TextEntryConfiguration
{
Label = "Description",
},
new AttachmentEntryConfiguration
{
Label = "Attachments"
Label = "Attachments",
}
}
}
}
};
public static ItemConfiguration DrivingLicence => new()
{
Sections = new List<ItemSectionConfiguration>