I am using an SFExpander on a UWP app, but will also have iOS/Android versions. Therefore it is quite possible for the user to resize the UWP window, and I also want to be able to animate the width of the Expander's parent column.
If I resize the screen, the content of the Expander stretches horizontally and is no longer fully visible. This also happens if I resize the Grid column the Expander is a child of.
The only way to restore the correct width of the Expander's content is to physically or programatically hide and re-show the Expander. If I do it programatically I have to leave a fairly large delay (500-750ms) otherwise the stretched content remains, and this delay between hiding and re-showing doesn't look good. Manual hide/show is instant but the user shouldn't have to do that.
I am already using .ForceLayout to try and help things along.
XF version is 3.4.0.1008975 - I would rather not have to upgrade at this point as I have tried previously and had major issues with Android library dependencies etc, so a workaround would be great if possible.