I am looking for a way to know when MapImageLayer symbology is visible and there's nothing pending. Adding a watch for reactiveUtils does show me that the MapImageLayer is loaded, but the symbology is still not visible for up to 5 seconds. (the view.when is also hit). I am trying to disable some widget buttons until after the map and symbology is fully loaded with nothing pending before I enable the buttons. I am also updating a few layers in listItemCreatedFunction and have a watch reactiveUtils there too, but still not helping. I'm thinking about just adding a 5 second timer if there's nothing else available.
🙄At this point my watch indicates the MapImageLayer is loaded, but there's no symbology yet.

😊At this point I can enable my widget buttons

const mapLayerAndLabels = new MapImageLayer({
url: mapLayerAndLabelsUrl,
legendEnabled: true,
visible: true,
title: 'Map Layers & Labels',
});
map.add(mapLayerAndLabels);
This is in listItemCreatedFunction
reactiveUtils.whenOnce(
() => mapLayerAndLabels.loaded)
.then(() => {
console.log(`mapLayerAndLabels is loaded.`);
});