I am attempting to create a flyout menu to navigate my app based on "PowerApps 1000 Videos" lesson 146.
For my properties I am trying to set the screen value, but I keep getting errors.
My intent, like in the video, would be to:
- Insert a gallery with the component as the data source
- on select navigate to the screen for that component item.
Custom Property
Table(
{
ScreenID:1,
ScreenText:"Home",
ScreenIcon: Icon.Home
ScreenValue: App.ActiveScreen
}
)
Gallery On Select:
Navigate(ThisItem.ScreenValue, None)