Added the basic structure of ComicInfo view.

This commit is contained in:
Luis Ángel San Martín
2016-04-09 11:52:23 +02:00
parent 0b379dbd0b
commit 88f2d2a754
13 changed files with 351 additions and 2 deletions

View File

@ -0,0 +1,15 @@
import QtQuick 2.6
import QtGraphicalEffects 1.0
Image {
id: read_compact
source: "info-tick.png"
ColorOverlay {
anchors.fill: read_compact
source: read_compact
color: true ? "#e84852" : "#1c1c1c"
}
}