Function dioxus_hooks::use_on_unmount
source · pub fn use_on_unmount<D: FnOnce() + 'static>(cx: &ScopeState, destroy: D)
👎Deprecated: Use
use_on_destroy
instead, which has the same functionality. This is deprecated because of the introduction of use_on_create
which is better mirrored by use_on_destroy
. The reason why use_on_create
is not use_on_mount
is because of potential confusion with dioxus::events::onmounted
.