I successfully integrated a file manager component following this tutorial. Despite no errors in vscode or chrome debug tool, my folders are not visible. Can anyone help me troubleshoot this issue?
https://i.stack.imgur.com/ihEak.png
I am unsure how to resolve this issue. I am willing to provide any necessary information :)
Update 1
I suspect the problem lies in importing styles externally. I have only created index.html and style.scss - do they need to be connected somehow?
https://i.stack.imgur.com/AmoC5.png
Index.html :
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Styles.html:
@import '~@angular/material/prebuilt-themes/indigo-pink.css';
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
}
Update 2
I have added mp-file-explorer.component files:
*.ts:
[Component code here]
*.html:
[HTML code here]
*.scss:
[SCSS code here]
Update 3
I have included more details:
[Main component typescript code here]
Main.component.html:
[Main component HTML code here]
Update 4
[MpFileService angular service code here]