I have been using Fluent UI to implement the UI for an Excel add-in that I'm working on. I need a way to display a series of pop up notifications that do not require user input, but just serve to notify the user that something happened. What I want is to use something like the Callout widget, that nicely stack on top of each other.
An example of what I am looking for: https://react-bootstrap.github.io/components/toasts/
I don't see any widget like that, and was wondering if it is possible to be able to implement the same in Fluent UI, so that I can preserve the look and feel with the rest of the UI widgets my add-in has. If that is not possible, I have no choice but to use a third party library, and then tweak it's look and feel to match that of Fluent UI.
What is the recommended way to go about this?
div
orStack
elements, make them nicer with the elevation / depth styles (developer.microsoft.com/en-us/fluentui#/styles/web/elevation) and add anIconButton
for the closing action. – Tired