Merge pull request #61 from zadjii-msft/joadoumie/sample-updates

small changes to sample
This commit is contained in:
Jordi Adoumie
2024-09-17 13:34:55 -04:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ internal sealed partial class SampleListPage : ListPage
public SampleListPage()
{
Icon = new(string.Empty);
Name = "SSH Keychain";
Name = "Sample List Page";
}
public override ISection[] GetItems()
@@ -34,8 +34,8 @@ internal sealed partial class SampleListPage : ListPage
Title = "Sample List Page",
Items = [
new ListItem(new NoOpCommand()) { Title = "TODO: Implement your extension here" },
new ListItem(new NoOpCommand()) { Title = "This one has a subtitle too", Subtitle = "Example Subtitle" },
new ListItem(new NoOpCommand())
new ListItem(new SampleListPageWithDetails()) { Title = "This one has a subtitle too", Subtitle = "Example Subtitle" },
new ListItem(new SampleMarkdownPage())
{
Title = "This one has a tag too",
Subtitle = "the one with a tag",

View File

@@ -23,7 +23,7 @@ internal sealed partial class SampleListPageWithDetails : ListPage
public SampleListPageWithDetails()
{
Icon = new(string.Empty);
Name = "SSH Keychain";
Name = "Sample List Page with Details";
this.ShowDetails = true;
}