kev
kev

Reputation: 155

disable the application menu on one qml page

How do i disable the application menu on one qml page? Currently, all qml pages have application menu, but I want to disable it in the login page. My application menu is inside the main.qml. Here's what I added to my main.qml:

Menu.definition: MenuDefinition {
    settingsAction: SettingsActionItem {
        imageSource: "asset:///images/navbar_icon_settings.png"

        onTriggered: {
            cppObj.onSettingsClicked();
        }
    }

My main.qml is the first page which is the login page, but I dont want the user to be able to swipe down and reveal the settings button

Upvotes: 0

Views: 520

Answers (1)

unexplored
unexplored

Reputation: 1424

Look at bb::cascades::Application::setMenuEnabled(bool enabled). I think this is what you need for your use case.

Upvotes: 2

Related Questions