eclipsesource / eclipsesource/tabris-js
Setting toolbarVisible is ignored when initial animations are not finished on iOS
Open
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
Assessment
This issue has not been assessed yet.