1 min read

Tutorial - develop an application using Corona Framework

Tutorial - develop an application using Corona Framework

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 -

cross platform development using corona framework
   -  Click Next - give Project Name, Project Location and Project Folder - Click Finish and window will look like -

how to develop simple application using corona framework
    
Step 2 -  
Once complete Step 1 , project window should look like -

cross platform development- corona framework
   -  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)
best mobile application developers corona framework
 
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 -

cross platform development using corona framework

What are the topmost NodeJS practices for developers?.

What are the topmost NodeJS practices for developers?.

Node.js, a platform based on Chrome's JavaScript motor assists with growing quick, adaptable system applications. It utilizes an occasion driven,...

Read More
PoS System for a retail business to boost growth

PoS System for a retail business to boost growth

What could be the ultimate goal for each business person? Increase the number of sales!!! In any case, driving traffic and offering amazing...

Read More