Posts by Anzell • 114 points
4 posts
- 
		2 votes1 answer101 viewsA: How to enable Null-Safety on Flutter without breaking the project?Unfortunately, some third-party libraries have not yet been upgraded to Null-Safety, which causes the project to break. But there is a process that can be done in a way to minimize the chances of… 
- 
		5 votes1 answer152 viewsQ: Create a new template for each N *ngFor elementsHello, I have an array items:any[] and I want to iterate in the view with the *ngfor, however, I am using a template <carousel> where for every item of that slide I call <carousel-item>,… 
- 
		1 votes0 answers766 viewsQ: Is it worth studying versions prior to Angular 6?I tried to search on the internet and in the forum itself, but I did not find something very clear and direct to my question so I thought I should ask here because it may be the doubt of some.… 
- 
		0 votes2 answers98 viewsA: Continue "do while" from last pointThe solution presented by Maniero is valid. Your enemy here is the call return main();, may seem interesting the idea of saving lines of code by reusing the function, but in your case it turns out…