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

// 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
    }
}
