0.0.1-1 • Published 11 years ago

coronasdk-slider v0.0.1-1

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

coronasdk-slider

Turn a display object into a sliding panel

Usage

1. Install

Setup lua-loader and then just npm install coronasdk-slider

2. Require

local Slider = require("coronasdk-slider")

3. Have fun

local panel = display.newRect(...)
local slidingpanel = Slider:new({}, panel)
slidingpanel.on("slide") = function (position)
  if "left" == position then print("panel closed") end
  if "right" == position then print("panel open") end
end

Happen to have a TableView widget that you want to slide? Do this:

local tableview = widget.newTableView(...)
local view = tableview[2] -- yes, it's dirty
local slidingpanel = Slider:new({}, view, {moveobject = tableview})

License

GNU Lesser General Public License (LGPL)

0.0.1-1

11 years ago

0.0.1

11 years ago