// Copyright (C) 2020 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause import QtQuick 2.6 import QtTest 1.0 import QtQuick.Layouts Item { RowLayout { anchors.fill: parent Rectangle { id: redRectanlge Layout.preferredWidth: 10 Layout.preferredHeight: 10 Layout.fillWidth: true Layout.fillHeight: true color: "red" } Rectangle { id: blueRectanlge Layout.preferredWidth: 10 Layout.preferredHeight: 10 Layout.fillWidth: true Layout.fillHeight: true color: "blue" } } }