Home How to Remove Toolbar from MeeGo Harmattan Application

How to Remove Toolbar from MeeGo Harmattan Application

The problem

By default all native Qt applications for MeeGo Harmattan (Nokia N9, Nokia N950) have toolbar which contains buttons at the bottom of the screen. Some applications do not need this toolbar and it has to be removed.

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:
  1. ToolBarLayout {
  2.         id: commonTools
  3.         visible: false
  4.     }
  • Disable tools on you page:
  1. Page {
  2.     tools: null
  3. }

 
 
Source Qt Developer Network

About ReadWrite’s Editorial Process

The ReadWrite Editorial policy involves closely monitoring the gambling and blockchain industries for major developments, new product and brand launches, game releases and other newsworthy events. Editors assign relevant stories to in-house staff writers with expertise in each particular topic area. Before publication, articles go through a rigorous round of editing for accuracy, clarity, and to ensure adherence to ReadWrite's style guidelines.