In my canvas app, I have a gallery with Items property as below:
SortByColumns(
Filter('mySQLtable',WorkCategory=varShowFieldGroup),
"Work"
,SortOrder.Ascending)
In the gallery, there are buttons. The buttons OnSelect properties:
Set(varShowFieldGroup,"valueA");
Set(varShowFieldGroup,"valueB");
Set(varShowFieldGroup,"valueC");
On PC browser it works perfectly. When users press on buttons, the gallery refresh and show new values accordingly. The problem is when we test on real iPhone 12, the Set(.....) only trigger on first time. When user press on another button, the gallery will not refresh. We tested in App studio with iPhone simulator and it is working.
Is there any way to work around it and how could I report the bug?