Comment 0 for bug 1566741

Revision history for this message
Stuart Langridge (sil) wrote :

If I use a Tabs component, and place a Page in one of the Tabs, and that Page has a new-style PageHeader, then my app shows two separate headers.

    Tabs {
        Tab {
            page:Page {
                header: PageHeader {
                    id: pageHeader
                    title: i18n.tr("MyApp")
                 }
             }
        }
        Tab {
            title: i18n.tr("Simple page")
            page: Page {
                Label {
                    id: label
                    anchors.centerIn: parent
                    text: "A centered label"
                }
            }
        }
    }