In development of a social platform for work, I found myself needing to support the creation of links for commons items such as, hashtags, urls, phone numbers, emails, etc. First instinct was, someone definitely has a solution for this! Thankfully, that turned out to be true (h/t Greg Jacobs). I knew Autolinker.js could save me… Continue reading Angular Autolink Pipe
Category: Ionic
Angular Masked Phone Number Input
Many of ours apps at some point will require a form with user input. More often than not, a phone number input is required. Rather than simply have the digits, it can be helpful to format the number as its typed in. It’s much more visibly appealing and easier to find a mistake if there… Continue reading Angular Masked Phone Number Input
Alphabetical Index with Ionic Virtual Scroll
This post is an extension of the first post on a contacts lists with headers to break up the sections. You can read that here! I wanted to extend that example to show how we could add an alphabetical index on the side of the list. This was something that plagued me for a while.… Continue reading Alphabetical Index with Ionic Virtual Scroll
Login Form with Show/Hide Password Switch
For me, I always appreciate when login forms give you an option to show the password I’ve typed in. It may seem commonplace, but all too often sites neglect to add this feature. It’s nothing more than a slight nuisance, but I appreciate being able to hit the toggle, show what I’ve typed so I… Continue reading Login Form with Show/Hide Password Switch
Ionic Virtual Scroll with Headers
We all have apps where we need to display a long list of contacts or users of some sorts. It could be a list of friends, co-workers, phone contacts, or plenty of other use cases. Nevertheless, ion-virtual-scroll comes in handy to create these lists because it comes with built-in performance benefits. As Ionic says in… Continue reading Ionic Virtual Scroll with Headers