I\'m writing an web app with AngularJS and angular-material. The problem is that there\'s no built-in component for file input in angular-material. (I feel that file uploading d
I've join some informations posted here and the possibility of personalize components with Angular Material and this is my contribution without external libs and feedback with the name of the chosen file into field:
HTML
{{selectedFiles.item(0).name}}
Choose file
TS
selectFile(event) {
this.selectedFiles = event.target.files;
}