I am using a progress View widget but when I tried to extend its width to display.contentWidth or some of its multiple, it breaks and gives a weird look.
Can someone suggest me how to prevent this.
My code is
[lua]
progressView = widget.newProgressView
{
left = display.contentWidth * 0.4,
top =display.contentHeight * 0.95,
isAnimated = true,
}
progressView.isVisible = true
progressView.width = display.contentWidth * 0.65
[/lua]