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 […]

Categories
Tutorials

JavaScript Array slice and splice

If you have used JavaScript arrays than you surely know it’s length property. Arrays also come with built in methods. In this article I will talk about slice and splice. What they are and where they can be used. They manipulate our arrays. Sometime mutating the original array sometimes not. While writing JavaScript you will […]

Categories
Opinions

Tables still a choice for designing layouts

Speaking of tables in semantic markup, we are bound to use it only for tabular data. A data that comprise of rows and columns or a spreadsheet. But in CSS landscape we are free to turn any element into a table or even a table-cell. They would work and behave like a table and td to meet […]