I have the following widget:
https://github.com/blaskovicz/garmin...rce/GNCCApp.mc
When the widget loads, it will attempt to dynamically draw a summary of all information for the user (https://github.com/blaskovicz/garmin...SummaryView.mc) similar to these screenshots:
https://github.com/blaskovicz/garmin...ol#screenshots
My base class sets a simple layout (a header text label and a line) and then the rest of the info is draw in onUpdate() by subclass views. My problem is that when I run the widget on my physical watch (Fenix 5x) the screen is initially black with just the default @Strings.AppTitle at the top, before the rest of the layout / rendering code kicks in. Is there a way I can make this widget perform more like other watch widgets (ie it's not initially blank when it scrolls into view alongside other watch widgets)? When I run it in the simulator, it renders the initial view so quickly that I don't notice any issues.
This is my first Garmin app, so any pointers or help is appreciated. Thanks!