Skip to content

Instantly share code, notes, and snippets.

@Foreman76
Created November 10, 2022 14:41
Show Gist options
  • Save Foreman76/75bab1b8dd0d7164095ff9d3dd6122b7 to your computer and use it in GitHub Desktop.
Save Foreman76/75bab1b8dd0d7164095ff9d3dd6122b7 to your computer and use it in GitHub Desktop.
/*******************************************************************************
**
** Copyright (C) 2022 Open Mobile Platform LLC.
** Contact: https://community.omprussia.ru/open-source
**
** This file is part of the Aurora OS Tesla Model Demo project.
**
** Redistribution and use in source and binary forms,
** with or without modification, are permitted provided
** that the following conditions are met:
**
** * Redistributions of source code must retain the above copyright notice,
** this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright notice,
** this list of conditions and the following disclaimer
** in the documentation and/or other materials provided with the distribution.
** * Neither the name of the copyright holder nor the names of its contributors
** may be used to endorse or promote products derived from this software
** without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
** THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
** FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
** IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
** OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
** LOSS OF USE, DATA, OR PROFITS;
** OR BUSINESS INTERRUPTION)
** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE)
** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
** EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
*******************************************************************************/
import QtQuick 2.0
import Sailfish.Silica 1.0
import DummyModels 1.0
Page {
id: mainPage
objectName: "mainPage"
allowedOrientations: Orientation.Portrait
background: Rectangle {
color: "black"
}
Item {
id: pageHeader
anchors.top: parent.top
width: parent.width
height: Theme.itemSizeLarge
Image {
source: Qt.resolvedUrl("../resources/tesla-logo-light.png")
anchors.centerIn: parent
scale: 1.2
}
}
Item {
id: pageFooter
anchors.bottom: parent.bottom
width: parent.width
height: Theme.itemSizeHuge
BackgroundItem {
anchors.bottom: parent.bottom
anchors.bottomMargin: Theme.horizontalPageMargin
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width / 2
contentItem.radius: height
contentItem.border.width: Theme.dp(2)
contentItem.border.color: "red"
highlightedColor: "red"
Label {
text: qsTr("ORDER NOW")
anchors.centerIn: parent
color: "white"
}
onClicked: {
pageStack.replace(Qt.resolvedUrl("OptionsPage.qml"))
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment