In my Canvas app, I have a gallery that displays rows with text input fields. Above the gallery, there's a container that holds the column labels. I use a slider to scroll horizontally through the gallery.
However, I want to implement a tab feature so that when I navigate using tabs, the column labels remain synchronized with the rows in the gallery.
I have tried to synchronize the labels by setting the X property of the first label to match the X property of the first column in the gallery. Unfortunately, this method does not work correctly when using the tab key.
How can I achieve this synchronization effectively?