I'm currently writing a maui app in .NET 8.0 and after a method is complete, I usually display a message announcing the procedure was completed successfully, and I do this using the DisplayAlert() command.
However, what I am looking for on certain procedures is for the DisplayAlert() to close automatically after a few seconds if the OK button is not clicked.
Is there a way to do this?
If it cannot be done with DisplayAlert() is there another message box or class that is capable of this function?