C

Qt Quick Ultralite fileloading Example

// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial

import QtQuick 2.15

Rectangle {
    Column {
        Text {
            text: "This example should show four Qt logos"
        }

        Row {
            Image {
                source: "logos/2007.png"
            }
            Image {
                source: "file://logos/2008.png"
            }
            Image {
                source: "file://logos/2015.png"
            }
            Image {
                source: "file://logos/2016.png"
            }
        }
    }
}