2

On my quick app pages, some content may be blocked by the app menu. For example, the sign-in entry is blocked by the app menu in the following figure.

enter image description here

Although the menu is configured to be movable, users do not know that they can move it. How can I solve this problem?

sujith E
  • 214
  • 1
  • 7

2 Answers2

1

You can separate the menu from any content displayed by changing the value of titleBar to true in the manifest.json file.

e.g.
"display": {
"fullScreen": false,
"titleBar": "true",
"menu": false,
"menuBarData": {
"draggable": true
},

There is a good example with other solutions. Please check link

Zinna
  • 1,947
  • 2
  • 5
  • 20
1

The following solutions are provided to solve your problem:

  • Separating the menu from any content displayed

  • Hiding the menu

  • Adding a message indicating that the menu is movable

For Detail,pls kindly refer this link : What if some content is blocked by the app menu?

zhangxaochen
  • 32,744
  • 15
  • 77
  • 108