[TIMOB-13608] BlackBerry: Progress bar do not have labels attached to it by default as android or IOS
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2013-06-28T19:04:26.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | BlackBerry |
Labels | sdk-bb |
Reporter | Lokesh Choudhary |
Assignee | Russell McMahon |
Created | 2013-04-17T21:46:47.000+0000 |
Updated | 2017-03-13T18:29:20.000+0000 |
Description
Description:
1. Create an app for BB
2. Replace the app.ja with the code below
var win = Ti.UI.createWindow({
backgroundColor:'white'
});
var pb=Titanium.UI.createProgressBar({
top:40,
width:'auto',
height:'auto',
min:0,
max:60,
value:20,
color:'#fff',
message:'Downloading 0 of 10',
font:{fontSize:14, fontWeight:'bold'},
});
win.add(pb);
pb.show();
win.open();
2. Observe the app after it launches
Actual Results:
1. The progress bar is visible but not the label
Expected Results:
1. The progress bar along with the label is visible
Closing this ticket as the issue will not fix.