tips Set SASS the default style format on Angular/Ionic Angular 6+ ng config defaults.styleExts sass Ionic 4+ ionic config set defaults.styleExts sass
tips Easy way to pass async data as a function's input ProblemPass 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)">
Ionic My Experience with NgRx state manager on Ionic IntroIn 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 + NgRxActionsI've played