18 lines
244 B
QML
18 lines
244 B
QML
import QtQuick 2.0
|
|
import QuickAndroid 0.1
|
|
|
|
Item {
|
|
|
|
MaterialShadow {
|
|
asynchronous: true
|
|
anchors.fill: parent
|
|
depth: 1
|
|
}
|
|
|
|
Rectangle {
|
|
color: "#cddc39" // Lime 500
|
|
anchors.fill: parent
|
|
}
|
|
}
|
|
|