ngx-toastr, Toast not showing in Angular 7

后端 未结 16 1934
清歌不尽
清歌不尽 2021-02-01 12:37

I\'m currently developing a web app using Angular 7. I wanted to include ngx-toastr to send notifications to users but it isn\'t working as expected. When I trigger a toast noth

16条回答
  •  执念已碎
    2021-02-01 13:19

    i had this issue and i noticed that it was working but wasnt rendering the CSS properly, so then i checked the node_modules/toastr folder and realized that there were other CSS files, try including all the css files, because that worked for me.

    add the css files in your angular.json file and try running yoru application again.

     "styles": [              
              "./src/assets/css/bootstrap.min.css",
              "......",              
              "./node_modules/ngx-toastr/toastr.css",
              "./node_modules/ngx-toastr/toastr-old.css",
              "./src/styles.css",
              ".......",
              "......",
              "./node_modules/@fortawesome/fontawesome-free/css/all.min.css"
           ],
    

提交回复
热议问题