v0.1
This commit is contained in:
parent
591d55f43a
commit
fb560b54b1
115 changed files with 5537 additions and 0 deletions
|
@ -0,0 +1,17 @@
|
|||
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
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
import QtQuick 2.0
|
||||
import QuickAndroid 0.1
|
||||
import QuickAndroid.Styles 0.1
|
||||
pragma Singleton
|
||||
|
||||
Theme {
|
||||
mediumText.textSize: 18 * A.dp
|
||||
smallText.textSize : 14 * A.dp
|
||||
|
||||
colorPrimary: "#cddc39" // Lime 500
|
||||
textColorPrimary: Constants.black87
|
||||
windowBackground: "#eeeeee";
|
||||
|
||||
// The default icon of ActionBar is a "back" image
|
||||
actionBar.iconSource: A.drawable("ic_arrow_back",Constants.black87)
|
||||
|
||||
// Background with shadow
|
||||
actionBar.background: ActionBarBackground {
|
||||
}
|
||||
|
||||
// actionBar.title.textSize is not allowed in QML. You should declare your own TextMaterial and assign directly.
|
||||
// or modify text , smallText , mediumText and largetText
|
||||
actionBar.title : customTextMaterial1;
|
||||
actionBar.iconSourceSize: Qt.size(24 * A.dp , 24 * A.dp)
|
||||
|
||||
// Custom Style object.
|
||||
TextMaterial {
|
||||
id : customTextMaterial1
|
||||
textSize: 18 * A.dp
|
||||
textColor : Constants.black87
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
module theme
|
||||
singleton AppTheme 0.1 AppTheme.qml
|
Loading…
Add table
Add a link
Reference in a new issue