Set SASS the default style format on Angular/Ionic Angular 6+ ng config defaults.styleExts sass Ionic 4+ ionic config set defaults.styleExts sass
Easy way to pass async data as a function's input Problem Pass async data (like observable) as an input of a function. Workaround <input #id [value]='(data$ | async) | json' type="hidden" /> <ion-button click="doSomething(id.value)"> </ion-button>
My Experience with NgRx state manager on Ionic Intro In this article I will talk of my experience with NgRX, a reactive extension for Angular to manage state. I've used NgRx on Ionic with Angular2 engine. Ionic + NgRx Actions I've played the first time with NgRx on January 2018, inside a new project. It