I like the way you teach, bro. Your channel will grow.
@tdwjiaodja11 ай бұрын
Thank you so much! Repeating really helps to memorize
@sona4612 Жыл бұрын
Awesome tutorial 🔥🔥
@HasinthaWeragala2 ай бұрын
sir, why not use a css class to change the background? what is the advantage over a class by using a custom directive.?
@ruman-demo9 ай бұрын
@procademy, i cannot find the ANGULAR-EKART MODULE in the git repository please update the complete repository
@poojajagtap73495 ай бұрын
Very helpful
@williamt.roberts477110 ай бұрын
Where is the code for Video 47? I am not seeing it in the repo.
@jackofnotrades155 ай бұрын
Do you plan to create Rxjs and NgRx course? Would be a great addition
@Paul__351x4 ай бұрын
Optimistically, fantastic news - the confirmation of your Sales Incentive payment has been processed!
@mohamadnourbader10686 ай бұрын
first, thanks for this great series, in 16:17 you are talking about the variable defined in the constructor. from my work and search I found I can use the var of constructor inside the component without the need to assign it to another Vars. are there the same?
@procademy6 ай бұрын
That is a typescript feature I have already covered in one of the lectures in the dependency injection section.
@TheNeraxes Жыл бұрын
This angular series is awesome :) Name of the VSCode theme please :D
@sillas_head Жыл бұрын
He's using the Monokai theme!!
@andinofaturahman3649 Жыл бұрын
can component use custom directive ?
@shivankgoel719410 ай бұрын
In angular 17 there is no modules.ts and when I am importing the background directive in the component it is not working how to fix it
@procademy10 ай бұрын
From angular 17, Angular uses statndalone component by default. And in standalone components, app.module is not required. I have not covered standalone components yet...i am going to cover it in future lectures. But for now, try creating an angular project using following angular cli command: ng new project-name --no-standalone. This will create a regular angular project with app.module.