7 min read
Machine learning: A Powerful Resource for E-Commerce
For eCommerce businesses, face-to-face interactions with clients are almost inexistent. Clients make their orders online, make payments through...
1 min read
Anurag
:
Apr 18, 2020 12:29:59 PM
Corona SDK is a software development kit that lets developers create graphic cross-platform apps (for iOS and Android) using Lua on top of C++/OpenGL. Corona makes it very easy to roll out cross-platform games and graphic-intensive apps. It even includes a physics engine.
Here's a small tutorial on How to develop simple application using Corona Framework. This is just the beginning. The SDK provides many advanced features as well using which you can create amazing and addictive games and apps.
Requirements -
- Corona Project Manager (CPM)
- LuaGlider
- Corona Complete
Install one of these IDEs.
Creating a simple app with the help of LuaGlider -
Step 1 -
- Launch LuaGlider Window
- Tap on the New Project Icon (Top Left Corner) and window will look like -
- Click Next - give Project Name, Project Location and Project Folder - Click Finish and window will look like -
Step 2 - Once complete Step 1 , project window should look like -
- Corona applications may be configured through two optional Lua files, which should be saved to project folder along with main.lua file :
- config.lua - Handles global content scaling and alignment for multiple screens.
- build.settings - Handles build options like the screen resolutions, the setting of Info.plist values for iOS and/or application permissions for Android.
- Now, Select main.lua, write these lines -
local textObject = display.newText("Hello Corona !!", 0, 0, native.systemFont, 40) --
textObject.x = display.contentWidth / 2
textObject.y = display.contentWidth / 4
textObject:setTextColor(255,255,255)
Conventions used in above code -
1- local is used for creating local object
2- display.newText - for inserting text along with font name and font size
3- textObject.x - distance from left side , textObject.y - distance from top
Step 3 - Build and run - Tap on the Run Icon (Top Left Corner)
Output -
7 min read
For eCommerce businesses, face-to-face interactions with clients are almost inexistent. Clients make their orders online, make payments through...
3 min read
The rapid expansion of technology and electronic products has made digital marketing one of the biggest and fastest-rising industries.
2 min read
Bitcoin has heavily impacted the food sector in Africa. This growth is attributable to Bitcoin's several advantages to users in the African...