Point and Navigate to Screens in Component.
In my previous post , we have created the UI for the component. If you haven't seen it, please check it first before moving on here. In this post, we will be learning how the items in our gallery will point to screens on our App once we place this component on those 3 screens. Steps: 1. Click on the component ' compLeftNavBar ' under Tree View and then under ` Properties `, click ` New custom property '. 2. Type ' MenuItems ' and set the data type to ` Table ` and press Create. 3. Select ` MenuItems ` property on top and set its value to: Table( { MenuLabel: "Home", MenuIcon: Icon.Home, MenuScreenNavigate: App.ActiveScreen, MenuID: 1 }, { MenuLabel: "Profile", MenuIcon: Icon.CheckBadge, MenuScreenNavigate: App.ActiveScreen, ...