framework-widget
framework-widget copied to clipboard
Corona widget.* framework
usage : local button = widgetExt:newButton( { x = xButton, y = yButton, width = buttonsWidth, height = buttonsHeight, labelAlign = “center”, labelAlignY = “center”, shape = { cornerRadius =...
There's currently a chance that the button's touch event is still called after the button's `view.parent` has already been removed and set to nil. This will result in a runtime...
Signed-off-by: Mark Sandell This should fix #21 but is completely untested, since I haven't figured out how to build widgets (or corona as a whole) locally yet.
You cannot call ```widget.newTabBar()``` with image files (not an image sheet), due to initWithImageFiles attempting to use (unnecessarily) an undefined "imageSheet" variable. I'm pretty sure [this line](https://github.com/coronalabs/framework-widget/blob/d425ae72f47b29a3da5880eebcb1111f2cdf6cd2/widgetLibrary/widget_tabbar.lua#L227) can simply be...
in the line 225 in switch.lua
When looking for which category row to display, take all rows into account, not only visible rows
Added isEnabled parameter to widget Setup Added obj:setEnabled() public method
Function `setColor`would not change color on 9-Slice buttons, since it iterated over the buttons children, which would only be `_view`. Instead, we iterate on `self._view`s children, which contain all the...
This change set migrates from Storyboard api (removed) to the newer Composer api, and allows running the code on current Corona releases. The lambda event listener wrappers aren't quite kosher,...