sencha touch - hide titlebar of an Ext.navigation.View

sencha-touch

Solution

Yes, you can do something like this:

Ext.define('Nav', {
  extend: 'Ext.navigation.View',

  config: {
    fullscreen: true,

    navigationBar: {
        hidden: true
    }
  }
});

Problem

Is it possible to hide the titlebar of an Ext.navigation.View? I don't see any options in the documentation. Thanks!

Original source