plugins icon indicating copy to clipboard operation
plugins copied to clipboard

Overlap using GridLayout iOS issue

Open sasabogi opened this issue 1 year ago • 0 comments

When two elements are overlapped using GridLayout, element below becomes unavailable because it is covered by another element. This is not the case with android. Code example:

<GridLayout rows="*">
    <StackLayout row="0">
        <Button text="TEST"></Button>
    </StackLayout>
    <StackLayout row="0">
        <Button text="TEST1" style="margin-top: 50;"></Button>
    </StackLayout>
</GridLayout>

In this example the TEST button is not clickable on iOS, while on Android both are clickable.

sasabogi avatar Mar 29 '24 15:03 sasabogi