How to remove the default toolbar in a MeeGo Harmattan QML app
Qt applications for MeeGo Harmattan (Nokia N9, Nokia N950) have a default toolbar at the bottom of the screen, by default. This article shows how to remove the toolbar if it is not required.
Article Metadata
Compatibility
Platform(s): MeeGo Harmattan
Article
Created: leonanavi
(26 Dec 2011)
Last edited: hamishwillee
(13 Jun 2012)
Solution
To remove the toolbar of a native MeeGo Harmattan QML application do the following steps:
- Disable the visibility of the toolbar at the main QML file and delete the menu:
ToolBarLayout {
id: commonTools
visible: false
}
- Disable tools on you page:
Page {
tools: null
}


(no comments yet)