delayed_consumer_hud library

Classes

DelayedHud
Most basic delayed start HUD. It does not use a provider to trigger the HUD. You must provide the value to when it should be shown.
DelayedHud1<T1>
In the following example, we will use a ChangeNotificationProvider to trigger showing the HUD. It is also using a delayed start. When the provider changes values, the callback showHud will be called and the provider will be passed to this function. You can then check its value to determine if you need to show the HUD.
DelayedHud2<T1, T2>
In the following example, we will use a ChangeNotificationProvider to trigger showing the HUD. It is also using a delayed start. When one of the providers change values, the callback showHud will be called and the providers will be passed to this function. You can then check its value to determine if you need to show the HUD.
DelayedHud3<T1, T2, T3>
In the following example, we will use a ChangeNotificationProvider to trigger showing the HUD. It is also using a delayed start. When one of the providers change values, the callback showHud will be called and the providers will be passed to this function. You can then check its value to determine if you need to show the HUD.