Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    skin density change when switching orientation

    SmartClient Version: v13.1p_2024-12-20/AllModules Development Only (built 2024-12-20)

    Safari on iPad Air XCode simulator

    Tested with Shiva skin, spacious density.

    Hello, please run this test case in the showcase, while in portrait orientation, run it in the browser console or developer console, not in the showcase sourceEditor:

    Code:
    isc.Window.create({
        title: "foo",
        autoSize: true,
        autoCenter: true,
        bodyProperties: {
            defaultLayoutAlign: "center",
            membersMargin: 14,
            layoutLeftMargin: 20,
            layoutRightMargin: 20,
            layoutTopMargin: 20,
            layoutBottomMargin: 20
        },
        items: [
            isc.DynamicForm.create({
                colWidths: [120, "*"],
                width: 450,
                cellPadding: 10,
                fields: [
                    {
                        name: "aField",
                        title: "foo bar"
                    }
                ]
            })
        ]
    }).show()
    Then switch to landscape orientation, and back to portrait, you'll see that the skin seems to change to dense density:

    https://youtube.com/shorts/6OI_yJw3sBk?feature=share

    #2
    Hello, this is the actual list of the devices in the XCode simulator where I see the above behaviour:
    iPad Air 5th gen iOS 17.4
    iPad 10th gen iOS 17.4
    iPad Pro 11inch 4th gen iOS 17.4
    iPad Air 11inch M2 iOS 17.4
    iPad Pro 11inch M4 iOS 17.4

    The problem may be dependent upon the screen resolution, as it doesn't happen using:
    iPad Pro 12.9"
    iPad Air 13" M2
    iPad Pro 13" M4
    iPad Mini 6th gen

    right now I don't have access to the physical device where I've noticed this behaviour in the first place, so I'm not sure 100% what model it is, but I think it's an iPad Pro 11" 2nd generation, iPadOS 17.4.1.


    Comment

    Working...
    X