How to change the color of *just* the header?

andrewsomething

Is there a non-hacky way to change the color of just the header in an app using the Ubuntu SDK? MainView has a headerColor property, but that is used as the first step of gradient. Currently, I'm just putting a colored rectangle up there:

Rectangle {
    id: headerBackground
    height: header.height
    width: header.width
    anchors.top: parent.top
    color: "#288369"
}

But this causes a number of issues, most notably it is incomparable with a ListView that fills an entire page. A full example can be found in this gist.

andrewsomething

Michael's pointer to Karma Machine's implementation did indeed point me in the right direction. The key is injecting the rectangle into the header so that it is a proper child. This can be done with the createObject() method that Michael mentioned if you have the rectangle in a separate qml file, or you can use createQmlObject with a string of QML.

Below is a much simplified example (using Tabs but the same thing is possible with a PageStack):

import QtQuick 2.0
import Ubuntu.Components 0.1

MainView {
    id: mainView

    width: units.gu(40)
    height: units.gu(60)

    Tabs {
        id: tabs

        Tab {
            title: i18n.tr("Colored Header")
            page: Page {
            }
        }
    }

    Component.onCompleted: {
        tabs.tabBar.__styleInstance.headerTextSelectedColor = "white";
        var component = Qt.createQmlObject(
            'import QtQuick 2.0; Rectangle { anchors.fill: parent; z: -1; color: "#288369"; }',
            tabs.header);
    }
}

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How to change button color

분류에서Dev

How to change color of image in JavaFX

분류에서Dev

How to change color of CCDrawNode component?

분류에서Dev

How to change the font size of QTableWidget header?

분류에서Dev

How to dynamically change SVG fill color?

분류에서Dev

How to change default selection color of a ListView?

분류에서Dev

How to change the color of the text of a label in Xcode

분류에서Dev

How to change a font/background color in transparent windows?

분류에서Dev

How to find and change color of specific word in string

분류에서Dev

How to change the color of a senders parent on event?

분류에서Dev

How can i change hyperlink color with JQuery?

분류에서Dev

How to Change Font Color based on Conditional?

분류에서Dev

How to change the color of the text in below code?

분류에서Dev

How to change the color of different files in ls

분류에서Dev

How to change the Foreground Color of ListView Selected Item

분류에서Dev

How to change the color of a touched region in ImageView?

분류에서Dev

How to change tint color of a rightCalloutAccessory on Mapbox?

분류에서Dev

Just change all files to writable from root , how to reverse this?

분류에서Dev

How to change web browser's tab bar background color or image?

분류에서Dev

How to change color of the bubble (under cursor) on EditText in Flutter

분류에서Dev

How to make a Widget change color briefly like a button

분류에서Dev

How to change to a specific color by its hex code in GIMP?

분류에서Dev

How to change the color of button and pause screen for few second when it clicked?

분류에서Dev

Ubuntu SDK QML how to change the background color of TextField

분류에서Dev

How can i change the color of my lines in drawing GUI

분류에서Dev

GTK2: How to change a specific color in a GTK theme

분류에서Dev

how do i change the font color of current link

분류에서Dev

How can I change the color of android:homeAsUpIndicator in theme

분류에서Dev

How to change font color in Excel based on cell value?

Related 관련 기사

  1. 1

    How to change button color

  2. 2

    How to change color of image in JavaFX

  3. 3

    How to change color of CCDrawNode component?

  4. 4

    How to change the font size of QTableWidget header?

  5. 5

    How to dynamically change SVG fill color?

  6. 6

    How to change default selection color of a ListView?

  7. 7

    How to change the color of the text of a label in Xcode

  8. 8

    How to change a font/background color in transparent windows?

  9. 9

    How to find and change color of specific word in string

  10. 10

    How to change the color of a senders parent on event?

  11. 11

    How can i change hyperlink color with JQuery?

  12. 12

    How to Change Font Color based on Conditional?

  13. 13

    How to change the color of the text in below code?

  14. 14

    How to change the color of different files in ls

  15. 15

    How to change the Foreground Color of ListView Selected Item

  16. 16

    How to change the color of a touched region in ImageView?

  17. 17

    How to change tint color of a rightCalloutAccessory on Mapbox?

  18. 18

    Just change all files to writable from root , how to reverse this?

  19. 19

    How to change web browser's tab bar background color or image?

  20. 20

    How to change color of the bubble (under cursor) on EditText in Flutter

  21. 21

    How to make a Widget change color briefly like a button

  22. 22

    How to change to a specific color by its hex code in GIMP?

  23. 23

    How to change the color of button and pause screen for few second when it clicked?

  24. 24

    Ubuntu SDK QML how to change the background color of TextField

  25. 25

    How can i change the color of my lines in drawing GUI

  26. 26

    GTK2: How to change a specific color in a GTK theme

  27. 27

    how do i change the font color of current link

  28. 28

    How can I change the color of android:homeAsUpIndicator in theme

  29. 29

    How to change font color in Excel based on cell value?

뜨겁다태그

보관