Hi again and thanks for your patience. I tried but I get some red errors...
And yes you are correct - when opening the app I would like the Home icon to be enabled/activated in blue.
Where is that being declared so I understand?
Home icon - OnSelect:
UpdateContext({EnabledHomeIcon = true});
UpdateContext({DisabledHomeIcon = false});
Navigate(HomePage)
Home icon - Color:
If(EnabledHomeIcon = true, RGBA(2,120,212, 1), RGBA(149,149,149, 1))
User icon OnSelect:
UpdateContext({EnabledUserIcon = true});
UpdateContext({DisabledUserIcon = false});
Navigate(UserPage)
User icon - Color:
If(EnabledUserIcon = true, RGBA(2,120,212, 1), RGBA(149,149,149, 1))
Items icon OnSelect:
UpdateContext({EnabledItemsIcon = true});
UpdateContext({DisabledItemsIcon = false});
Navigate(ItemsPage)
Items icon - Color:
If(EnabledItemsIcon = true, RGBA(2,120,212, 1), RGBA(149,149,149, 1))