[TIMOB-23682] Windows: borderRadius for ProgressBar
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Fixed |
| Resolution Date | 2016-08-31T09:10:59.000+0000 |
| Affected Version/s | Release 5.4.0 |
| Fix Version/s | Release 6.1.0 |
| Components | Windows |
| Labels | n/a |
| Reporter | Kota Iguchi |
| Assignee | Kota Iguchi |
| Created | 2016-07-26T06:18:35.000+0000 |
| Updated | 2016-11-23T22:45:03.000+0000 |
Description
Implement
borderRadius for ProgressBar
var win = Ti.UI.createWindow({ backgroundColor: 'purple' }),
progressBar = Ti.UI.createProgressBar({
borderWidth: 5,
borderColor: 'yellow',
borderRadius: 5,
min: 0,
max: 10,
value: 0,
message: 'Downloading 0 of 10',
width: Ti.UI.FILL
});
win.add(progressBar)
win.open();
https://github.com/appcelerator/titanium_mobile_windows/pull/839
Verified fixed, was able to see the border radius for the progress bar. *Environment*