Hi, I do have this menu component, which I populate from a collection called colMenuItems.

However, the issue is that I need to re-add items there every time my app is restarted(they disappear each time). Therefore, I've had to add this to 'on-start', which causes lag and the menu loads a couple of seconds after the app is started. This is how I add my elements currently:
Collect(
colMenuItems,
{
Icon: Icon.RadarActivityMonitor,
Id: 6,
MenuLabel: "Monitoring",
Screen: 'Monitoring Screen'
}
)