The DMC Corona UI library is collection of advanced widgets for the Corona SDK. They can be used in any size or type of application.
The module architecture is heavily object-oriented, but each module can be used with any style of coding. The OO-nature ensures that the modules can be easily re-used or modified as necessary.
Features
- Robust and efficient widgets
- Cascading style sheets
- Powerful controls
Documentation & Examples
There are examples and documentation available for the modules. Look in the examples
folder for available examples which can be run directly in the Corona SDK. Documentation and some simple screencasts of examples are online at: docs.davidmccuskey.com
Questions or Comments
If you have questions or comments you can either (preferred order):
- send me an email: corona-lib at davidmccuskey com
- post an issue here on github
- send a PM @ coronalabs.com: @dmccuskey
- post to the Corona forums: http://forums.coronalabs.com
Issues
If you have any issues, please post them here on github: dmc-corona-ui issues
For easy installation, copy the following setup in your project:
dmc_corona.cfg
dmc_corona_boot.lua
lib/
dmc_ui.lua
dmc_corona/
dmc_ui/
With this setup the widgets module would be imported like so:
local dUI = require 'lib.dmc_ui'
local button = dUI.newPushButton( params )
...
For more detailed info about installation, visit Install DMC Corona UI.
-
Background
A widget used to provide a backing image. This is used in other widgets, eg TextField, Button, TableViewCell, etc. Several display types – image, rectangle shape, rounded shape, 9-slice, etc.
-
Button
A fancy button set.
-
NavBar
A navigation bar.
-
NavItem
An item used in the NavBar.
-
ScrollView
A robust 2D scroll surface.
-
Segmented Control
A horizontal control made of multiple segments, each segment functioning as a discrete button.
-
TableView
A high-performance TableView widget, inherits from ScrollView.
-
TableViewCell
A general-purpose row for a TableView.
-
Text
A widget to display textual information.
-
TextField
No-fuss, all action text-input widget.
-
Navigation Control
Builds on NavBar to deliver precise page navigation.
The MIT License (MIT)
Copyright (c) 2013-2015 David McCuskey
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.