I have a horizontal scrollable Row with "Generate Dynamic Children" enabled, bound to an App State List<String> variable (10 category names). Each generated chip highlights based on a Component Parameter (currentCategory) matching its own value in the list, and tapping a chip navigates to that category's page.
What I'm trying to do: When the component loads, I want the Row to automatically scroll so the currently-active chip (the one matching currentCategory) is visible/centered, instead of always starting at the beginning of the scroll.
My question: Is there a supported way (native action, ListView-specific feature, or another Custom Action workaround) to scroll a Generate-Dynamic-Children widget to a specific index or item, rather than only Beginning/End? If ListView supports this and Row doesn't, please confirm that so I know converting is worth doing.