/*!
 *
 * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved.
 * \copyright
 * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN
 * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER.
 *
 * \file ScreenItem.qml
 * \author (last) Behrouz NematiPour
 * \date (last) 22-Mar-2020
 * \author (original) Behrouz NematiPour
 * \date (original) 21-Oct-2019
 *
 */

// Qt
import QtQuick 2.12

// Project
//  Qml imports
import "qrc:/globals"

/*!
 * \brief   Parent item for all the Screens
 */
Item { id: _root
    property alias backgroundRect: _backgroundRect

    visible: false
    width  : Variables.applicationWidth
    height : Variables.applicationHeight

    Rectangle { id: _backgroundRect
        anchors.fill: parent
        color: Colors.backgroundMain
    }
}
