eclipsesource / eclipsesource/tabris-js

Setting toolbarVisible is ignored when initial animations are not finished on iOS

Open
#597 14 comments 0 reactions 1 assignee Claimed by @cpetrov View on GitHub
bug
Dominant language
JavaScript
Stars
1.4k
Forks
171
PR merge metrics
No merged PRs in 30d

Description

Initially setting the property to `false` doesn't have any effect. It must be set in the resize event of the page for it to work.

Workaround:

```
tabris.create("Page", {
title: "Creating a fullscreen page",
topLevel: true
}).once("resize", function() {
tabris.ui.set("toolbarVisible", true);
}).open();
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.