Hello,
I am successfully using Parent.Size on several objects to change the font size depending on the screen size, as shown here:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/create-responsive-layout
Parent.Width *
Switch(Parent.Size,
ScreenSize.Small, 0.5,
ScreenSize.Medium, 0.3,
0.25)
I am now trying to achieve the same thing within a gallery, when the screen size is set to ScreenSize.ExtraLarge update the font size to something a bit bigger.
The problem I run into is now I am in a gallery Parent is something else so Parent.Size no longer works. I've looked under App. and Screen. for something similar but can't find what I want.
How can I get around this?
Thanks in advance