var win = Ti.UI.createWindow({
backgroundColor: 'black',
});
var vw_main = Ti.UI.createView({
left: 0,
top: 0,
width: '100%',
height: '100%',
});
win.add(vw_main);
var vw_rect1 = Ti.UI.createView({
//top: 20,
width: 250,
height: 100,
borderRadius: 10,
backgroundColor: 'red',
});
vw_main.add(vw_rect1);
var vw_rect2 = Ti.UI.createView({
width: 250,
height: 100,
backgroundColor: 'black',
});
vw_rect1.add(vw_rect2);
/*
When borderRadius is enabled in the red view. It is shrinking its child view by (what i assume is 1px).
This causes a unwanted thin border.
*/
win.open();
Hi [~pritish.george], Can you try using latest ti sdk 8.0.1.GA and confirm if you experience the same? Did you experience this issue on emulator or real device? Let us know the update.
Hello, Did you tried with the latest SDK? Can you follow up here? Thanks.
Hi, I have tested it using Ti SDK 8.0.1 GA and on a Android device. The issue *does not exist on SDK 8.0.1 GA*
[~pritish.george] so the issue is fixed for you when you use 8.0.1? In that case this ticket can be closed.