Categories
Tutorials

Implement Show Hide Password in Ionic/Angular

We are required to create secure passwords. For secure password we need to follow some strict rules. Some of these rules are: – At least one uppercase alphabet – At least one special character – At least 12 characters and the list goes on. While keeping these requirements, visitors to your website can have a […]

Categories
Tutorials

Let Geo location work on Hybrid Mobile Apps

I’ll focus on Geo location with Ionic framework but same is true for others (All of them that use cordova/phonegap in one way or the other such as nativscript, weex, quasar). By Hybrid mobile apps I mean apps that uses web technologies and cordova to run native on handheld devices. Using a native feature in […]

Categories
Tutorials

Random Ionic Tips: Tabs and Text Color

This article comprises of following ionic tips Set Root Nav and Tabs How to apply text color in Ionic Set Root Nav and Tabs My app structure is like The Red Box tells that I am on Login Screen . After successfully login, I was redirected to the Tabs Page. Tabs Page next decides where […]

Categories
Opinions

Things to consider when renaming Ionic Page

Ionic comes with the concept of pages, they are components that takes up entire visible area. Recently I run into program that consumed a lot of my precious time. Ionic tip for renaming pages Generally when you create an ionic page using ionic cli (ionic generate page Features), a folder is created with the name […]

Categories
Tutorials

Challenges with JavaScript date and Ionic ion-datetime

Dealing with JavaScript has never been easy for me. In JavaScript Today’s date is represented as 2017-11-23. It’s December but no where you can find 12 in it. That’s because months in JavaScript starts from “Zero”. That’s first confusion for you. Ionic comes with ion-datetime component which lets you easily choose date and time. With native UI and feel for your […]