2023-04-06 09:23:37 +02:00

20 lines
523 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* SPDX-License-Identifier: BSD-3-Clause
*****************************************************************************/
#include "Page.h"
Page::Page( QQuickItem* parent )
: Page( Qt::Vertical, parent )
{
}
Page::Page( Qt::Orientation orientation, QQuickItem* parent )
: QskLinearBox( orientation, parent )
{
setMargins( 20 );
setPadding( 10 );
setSpacing( 10 );
}