Lanka Developers Community

    Lanka Developers

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Shop
    1. Home
    2. dev_lak
    3. Posts
    • Profile
    • Following 5
    • Followers 28
    • Topics 31
    • Posts 460
    • Best 151
    • Controversial 0
    • Groups 3

    Posts made by dev_lak

    • RE: Xamarin Tutorial (English) - Part 4 & 5

      Nice work bro....

      posted in Hybrid App Development
      dev_lak
      dev_lak
    • RE: Portable and lightweight cross platform application development framework from SL

      wow this is great, we can contribute to extend this framework.... :heart:

      posted in Announcements
      dev_lak
      dev_lak
    • RE: How to write regex with javascript

      welcome bro...

      posted in Web Development
      dev_lak
      dev_lak
    • RE: How to write regex with javascript

      try, /[a-zA-Z]{8}[_]{1}[0-9]{7}$/g

      posted in Web Development
      dev_lak
      dev_lak
    • RE: Technology Trends You Need to Know...

      Nice post bro...

      posted in Blogs
      dev_lak
      dev_lak
    • RE: Etiquette to follow when coding...

      Usefull post..

      posted in Blogs
      dev_lak
      dev_lak
    • RE: Xamarin Tutorial (English) - Part 3

      nice work bro... :heart:

      posted in Hybrid App Development
      dev_lak
      dev_lak
    • RE: βš– Load Balancing vs βš™ Failover

      Thanks bro

      posted in Blogs
      dev_lak
      dev_lak
    • RE: πŸ”‘ Encryption vs πŸ”’ Hashing

      nice explanation bro...

      posted in Blogs
      dev_lak
      dev_lak
    • RE: An option to add tags and embedd youtube videos.

      @lahirunc & @root we're working on it.. and checking for security threats once done it'll be available.

      posted in Comments & Feedback
      dev_lak
      dev_lak
    • RE: Programming languages used for Machine Learning...

      Nice post bro... python lover ❀

      posted in Blogs
      dev_lak
      dev_lak
    • RE: Xamarin Tutorial (English) - Part 2

      nice work bro... :heart:

      posted in Hybrid App Development
      dev_lak
      dev_lak
    • RE: How to pick-up suitable technologies for your new web project.

      very usefull bro,,, thanks

      posted in Back-End Development
      dev_lak
      dev_lak
    • RE: Laravel API help

      @ciaompe my pleasure bro...

      posted in Back-End Development
      dev_lak
      dev_lak
    • RE: Laravel API help

      @ciaompe great answer, and also your API routes must return JSON response.

      posted in Back-End Development
      dev_lak
      dev_lak
    • RE: Xamarin Tutorial in English as Promised...

      nice work bro... :hearts:

      posted in Hybrid App Development
      dev_lak
      dev_lak
    • RE: Ionic Framework Intro

      @lkdev Welcome bro..

      posted in Hybrid App Development
      dev_lak
      dev_lak
    • RE: 8 MOST POWERFUL JAVASCRIPT FRAMEWORKS TO LEARN IN 2019

      Thanks bro... this is very usefull

      posted in Web Development
      dev_lak
      dev_lak
    • RE: Most Important Terminal Commands For Developers

      thanks bro... this will be great for every developer.

      posted in General Discussion
      dev_lak
      dev_lak
    • Ionic Framework Intro

      0_1547220209312_start-using-ionic-00001.jpg

      What is Ionic Framework

      Ionic is a complete open-source SDK for hybrid mobile app development created by Max Lynch, Ben Sperry and Adam Bradley of Drifty Co. in 2013. The original version was released in 2013 and built on top of AngularJS and Apache Cordova. The more recent releases, known as Ionic 3 or simply "Ionic", are built on Angular. Ionic provides tools and services for developing hybrid mobile apps using Web technologies like CSS, HTML5, and Sass. Apps can be built with these Web technologies and then distributed through native app stores to be installed on devices by leveraging Cordova.

      Installing Ionic


      Ionic apps are created and developed primarily through the Ionic command line utility (the β€œCLI”), and use Cordova to build/deploy as a native app. This means we need to install a few utilities to get developing.

      Installing Node and NPM

      The quickest way to get Node and NPM installed on your machine is through the NodeJS installer. After installing open a terminal and run npm --version and node --version to verify you have everything installed correctly.

      Installing Ionic CLI

      Run below command on your terminal

      $ npm install -g ionic cordova

      Note: The -g means this is a global install, so for Windows you will need to open an Admin command prompt. For Mac/Linux, you might need to run the command with sudo.
      

      Creating Ionic App


      To create a blank app run below command

      ionic start helloWorld blank

      • start will tell the CLI create a new app.
      • helloWorld is the App name.
      • blank is starter template

      Along with the blank template, Ionic also provides the following official templates:

      tabs : a simple 3 tab layout
      sidemenu: a layout with a swipable menu on the side
      blank: a bare starter with a single page
      super: starter project with over 14 ready to use page designs
      tutorial: a guided starter project

      If you don’t specify a template at the start, you will be prompted to pick one.

      Running our App


      To run your app, cd into the directory that was created.

      $ cd helloWorld
      $ ionic serve

      In the next article i'll go over the project structure created by the ionic start command

      References


      Official Ionic Framework Docs

      posted in Hybrid App Development
      dev_lak
      dev_lak
    • 1
    • 2
    • 19
    • 20
    • 21
    • 22
    • 23
    • 21 / 23