Unbale to Load or Edit App Pages in PowerShell Universal

Product: PowerShell Universal
Version: 1.4.6

I’m using PowerShell Universal version 5.5.3 and recently installed its extension on VS Code.

I wanted to implement pages within an existing app, but whenever I choose to create an app either from VS Code or PowerShell Universal dashboard the page file gets stored locally and it does not load the page. I’ve also found that if I edit the page in VS Code, it does not update to PowerShell Universal.

Please advise.

Has anyone been able to implement App Pages using this documentation:

New-UDPage -Name ‘Users’ -Url ‘/users’ -Content {
New-UDButton -Text ‘What page is this?’ -OnClick {
Show-UDToast $UDPage
}
} -AutoInclude

“Pages are automatically added to apps with the -AutoInclude parameter. Simply call New-UDApp in the root of your app’s PS1 file.”