framework-widget icon indicating copy to clipboard operation
framework-widget copied to clipboard

Corona widget.* framework

Results 18 framework-widget issues
Sort by recently updated
recently updated
newest added

Hello, I think that there should be a check if the first element even exists in the tableView: https://github.com/coronalabs/framework-widget/blob/9c1aed5838704a5b0184130c2bf4691f7c163f56/widgetLibrary/widget_tableview.lua#L1687 Right now CoronaSDK throws an error when trying to reload empty...

Crash log from device: ``` /Users/jenkins/slaveroot/workspace/Templates/label/android/subrepos/widget/widgetLibrary/widget_momentumScrolling.lua:819: attempt to call method 'insert' (a nil value) stack traceback: /Users/jenkins/slaveroot/workspace/Templates/label/android/subrepos/widget/widgetLibrary/widget_momentumScrolling.lua:819: in function 'createScrollBar' /Users/jenkins/slaveroot/workspace/Templates/label/android/subrepos/widget/widgetLibrary/widget_scrollview.lua:306: in function 'listener' /Users/jenkins/slaveroot/workspace/Templates/label/android/subrepos/timer/timer.lua:212: in function 'method' /Users/jenkins/slaveroot/workspace/Templates/label/android/platform/resources/init.lua:221: in...

When I add a display.newLine in a widget.scrollView I get a warning that says: "line.width is deprecated. Use line.strokeWidth".

``` -- The row isn't within the visible bounds of our view else -- Re calculate the scrollHeight self._scrollHeight = self._scrollHeight - row._height if self._scrollBar then self._scrollBar:repositionY() end -- decrement...

Bug already submitted to Corona (Case #43930.). Fix available on my Pull Request (https://github.com/coronalabs/framework-widget/pull/12)

The custom scroll bar does not work as expected. The width of the custom bar is too small. scrollBarOptions. The following in widget_scrollview.lua at 759 is incomplete. It should include...

When a tableView fires a _swipeLeft_ or _swipeRight_ event it also fires a _release_ event when the user releases the finger from the screen (or on mouse button up). In...

Unlike the _release_ event of a tableView row, the _tap_ event does not have a key called `row`: https://github.com/coronalabs/framework-widget/blob/master/widgetLibrary/widget_tableview.lua#L926 This causes a crash if the user's handler function is expecting...