[TIMOB-7844] MobileWeb: Tab content height is not being calculated correctly
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | High |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2012-03-05T09:49:07.000+0000 |
Affected Version/s | Release 2.0.0 |
Fix Version/s | n/a |
Components | MobileWeb |
Labels | n/a |
Reporter | Bryan Hughes |
Assignee | Chris Barber |
Created | 2012-02-28T13:49:15.000+0000 |
Updated | 2014-01-28T23:44:49.000+0000 |
Description
The content area of a tabbed application is being calculated as 100% of the screen height in some cases, which means it extends below the screen. The following example illustrates this bug because you cannot see the rounded corners at the bottom of the view.
win.add(Ti.UI.createView({
left: 0,
right: 0,
top: 0,
bottom: 0,
backgroundColor: "blue",
borderWidth: 10,
borderRadius: 10,
borderColor: "green"
}));
Fixed in TIMOB-7856