I'm developing a mobile application using the lateat ionic. I've installed ngx-datatable with npm to display some data. The table is working but I'm not able to apply the style. Following the documentation I added this to my page scss:
page-datapage{
@import '~@swimlane/ngx-datatable/release/index.css';
@import '/node_modules/@swimlane/ngx-datatable/release/themes/material.css';
@import '~@swimlane/ngx-datatable/release/assets/icons.css';
}
and this in my page template:
<ngx-datatable class="material"
[rows]="rows"
[columns]="columns">
</ngx-datatable>
The table appear and it is working (even the sorting is working) but the table is is not styled and no icon appear.