0
You can combine the Angular Material drag and drop feature (cdkDrag) with resizing?
I tried using css, but it didn’t work, there’s another way?
Example:
app.component.html
<div class="drag-drop" cdkDrag>
Minha DIV
</div>
app.component.css
.drag-drop{
width:320px;
border:1px solid green;
background:#ccc;
resize:both;
overflow:auto;
}