i have struggled very much trying to implement a device Backbutton in my wisej 4. 0.9 Hybrid app in vs 2026, who can help to solve this
Hi James,
this has been added to the latest Wisej.NET Hybrid release (4.0.10).
Best regards
Frank
This will be added in the next release. In order to use it make sure you have:
<application android:enableOnBackInvokedCallback=true />
Then you can use it like so:
Device.Application.BackRequested += (s, e) =>
{
// Handle Android system back navigation here.
}
Please login first to submit.
