Adding a URL to an App Bar Logo

Hi,

I’m sure I’m missing something obvious here, but how do I turn the logo on the nav bar into a ‘Home’ link please?

This code works just fine to show the logo…

New-UDApp -Navigation $Navigation -Theme $theme -Logo ‘/assets/MyPic.png’ -Title ’ ’ -Pages @(
Get-UDPage -Name ‘Home’
)

…but I can’t figure out how to make it a link.

Is this even possible?

Thanks in advance!

Neil

Product: PowerShell Universal
Version: 4.2.18

Update: I found an older post in here that suggests creating a custom app bar & the following code does what I need it to do, but the theme colors no longer apply…I can’t win :grin:

New-UDAppBar -Position fixed -Children { New-UDElement -Tag ‘a’ -Attributes @{ href = ‘/home’ } -Content { new-udimage -Path ‘f:\Assets\MyPIc.png’ } } -Drawer $Drawer

Is there an easier way to do this?