Skip to main content

Posts

PDF in Ionic projects (AngularJS)

  Overview     Ionic is an HTML 5 mobile app development framework targeted at building hybrid mobile apps. Hybrid apps are essentially small websites running in a browser shell in an app that have access to the native platform layer. Hybrid apps have many benefits over pure native apps, specifically in terms of platform support, speed of development, and access to 3rd party code. Ionic comes with very native-styled mobile UI elements and layouts that you’d get with a native SDK on iOS or Android but didn’t really exist before on the web. Ionic also gives you some opinionated but powerful ways to build mobile applications that eclipse existing HTML5 development frameworks. Since Ionic is an HTML5 framework, it needs a native wrapper like Cordova or PhoneGap in order to run as a native app. We strongly recommend using Cordova proper for your apps, and the Ionic tools will use Cordova underneath. About   We will cover "How to create and display PDF files usi...
Recent posts
e-KYC for business Business Mandates and Regulations Introduction As per Government of India rules and regulations, all the financials and identification matters need Aadhar verification. Under “Unique Identification Authority of India” (UIDAI), e-KYC process takes place, as API services provided by UIDAI are useful for private service providers to implement e-KYC and related solutions for financial and identification corporates in India. While implementing these solutions, Government of India mandate very strict rules and regulations for all service providers and service consumers. References Authentication Documents: https://uidai.gov.in/resources/authentication-and-fi-documents.html Do’s and Don'ts for Aadhar user agencies and departments: https://uidai.gov.in/images/resource/Do_and_Donts_for_Ministry_and_State_Version5_20102017.pdf Compendium of Regulations Circulars Guidelines: (AUTHENTICATION USER AGENCY (AUA)/E-KYC USER AGENCY (KUA), AU...

Charts in Ionic (AngularJS)

Overview   As we know, Ionic is a powerful HTML5 SDK that helps you build native-feeling mobile apps using web technologies like HTML, CSS, and Javascript. Ionic currently requires AngularJS in order to work at its full potential. While you can still use the CSS portion of the framework, you'll miss out on powerful UI interactions, gestures, animations, and other things. This sample is to show how to use charts in Ionic project. We will be using Angular charts to Ionic project. The complete source code of this example is here  This Create Project We can create Ionic project in 2 ways: 1) Through IONIC Creator ( Here ) (Ionic creator is very useful and easy to use prototyping tool to create UI templates for IONIC projects. It allows to implement basic routing through pages, style class and various layout of templates in quick time. We can create and download the project from IONIC creator through IONIC CLI tool, ZIP file format, Package or in Mob...