Twitter LogoFacebook Logo
Drag and Drop in Angular with Angular Material
Hello, in this video I will be talking about the Drag and Drop module from Angular Material.
By: King

Hello, in this tutorial I will be talking about the Drag and Drop module from Angular Material. 


The module allows us to easily apply drag and drop capabilities to any elements on the page. We can move an element around the page, reorder items in a list, and even move items from one list to another.

Before we begin, make sure to add Angular Material to your project. In the terminal execute the ng add command for Angular Material.

ng add @angular/material

Add the DragDropModule to your project. Go to the App module file, add the import statement, and add it to the app. 


Sign In