Hi @kwasi2762
I think I may have part of a solution for you. If you still need more, I am happy to help, just when you reply comment my name so I don't miss it.
What I have done:
Checkbox inside of Gallery:
OnCheck property
Set(toggleckbx, false);
ClearCollect(isChecked, ThisItem.Title)
// ThisItem.Title is just an example text field I am displaying in the gallery
OnUncheck property
Clear(isChecked)
Reset property
toggleckbx
Text Input control inside of Gallery:
Visible property
ThisItem.Title in isChecked
Rectangle inside of Gallery + Rectangle outside of Gallery:
Onselect property
Clear(isChecked);
Set(toggleckbx, true)
Fill property -Transparent
For the Rectangle inside of the gallery, ensure it is behind the checkbox and text input control.
For the Rectangle outside of the gallery, ensure it is behind the gallery and width and height is the same as the screen size.
Please tick Accept as solution if the answer is useful.
Thanks,
@AARON_C