Hello,
In my app I have this gallery on my home screen with the items value set to "colGalleryMenu".

In the App/OnStart value I have this set to the below where the "view/eye" symbol takes the user to the applicable form.
Set(
clTheme,{
clBlue: BlueSquare.Fill,
clDarkBlue: DarkBlueSquare.Fill,
clRed: RedSquare.Fill,
clYellow: YellowSquare.Fill,
clWhite: WhiteSquare.Fill,
clGreen: GreenSquare.Fill
}
);
Set(
ftTheme,FontLabel.Font
);
ClearCollect(
colGalleryMenu,
{
MenuTitle: "Extra Care Application to keep a mobility scooter",
NavigateTo: ECAKMS_scrn
},
{
MenuTitle: "Extra Care Centra New Resident",
NavigateTo: ECCNR_scrn
},
{
MenuTitle: "Extra Care Person Centered Fire Risk Assessment",
NavigateTo: ECPCFRA_scrn
},
{
MenuTitle: "Extra Care Personal Emergency Evacuation Management Plan",
NavigateTo: ECOEEMP_scrn
},
{
MenuTitle: "Older Persons Support Agreement",
NavigateTo: OPSA_scrn
},
{
MenuTitle: "Supported Housing Move Out Checklist",
NavigateTo: SHMOC_scrn
},
{MenuTitle: "Support Plan Needs Assessment",
NavigateTo: SPNA_scrn
},
{MenuTitle: "Supported Housing Risk Assessment and Management Review",
NavigateTo: SHRAAMR_scrn
},
{MenuTitle: "Support Plan",
NavigateTo: SP_scrn
}
);
What I'd like to do is allow a user to navigate to a new SharePoint list item (screen) for each item by clicking on the "+" smybol - could I integrate this into the above code?