I'm studying Angular and I had a question. I'm creating an application, and I wanted to organize the controllers by creating one for each View (template).
Exemplo:
Tela Cadastro - controller-cadastro.js
Tela Login - controller-cadastro.js
Tela Vídeos - controller-videos.js
Can I create a controller for each view? Is this logic correct? Is there a more intelligent and common way for a controller to control a different view and keep the structure of the files divided?