eclipsesource / eclipsesource/tabris-js
Change events not fired for layout properties
Open
- Dominant language
- JavaScript
- Stars
- 1.4k
- Forks
- 171
- PR merge metrics
- No merged PRs in 30d
Description
One would expect change events to be fired for layout properties as well.
Example:
``` javascript
const {Button, ui} = require('tabris');
let button = new Button({
text: 'foo',
left: 0, top: 0, width: 400, height: 50
}).on('widthChanged', () => {
console.log('width property changed');
}).appendTo(ui.contentView);
button.width = 500;
```
Contributor guide
Assessment
This issue has not been assessed yet.